1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

content / test / data / accessibility / aria / toggle-button-expand-collapse.html [blame]

<!--
@BLINK-ALLOW:collapsed*
@BLINK-ALLOW:expanded*
@WIN-ALLOW:PRESSED
@WIN-ALLOW:MIXED
@WIN-ALLOW:checkable:true
-->
<!DOCTYPE html>
<html>
<body>
  <div role="button" aria-pressed="true" aria-expanded="false" aria-haspopup="true">Toggle button, pressed, collapsed</div>
  <div role="button" aria-pressed="false" aria-expanded="false" aria-haspopup="true">Toggle button, not pressed, collapsed</div>
  <div role="button" aria-pressed="true" aria-expanded="true" aria-haspopup="true">Toggle button, pressed, expanded</div>
  <div role="button" aria-pressed="false" aria-expanded="true" aria-haspopup="true">Toggle button, not pressed, collapsed"</div>
</body>
</html>