1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34

content / test / data / accessibility / html / details.html [blame]

<!--
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
@MAC-ALLOW:AXARIAPosInSet
@MAC-ALLOW:AXARIASetSize
@MAC-ALLOW:AXRoleDescription
@MAC-ALLOW:AXExpanded=*
@UIA-WIN-ALLOW:LocalizedControlType='details'
@UIA-WIN-ALLOW:PositionInSet*
@UIA-WIN-ALLOW:SizeOfSet*
@WIN-ALLOW:EXPANDED
@WIN-ALLOW:COLLAPSED
@WIN-ALLOW:localized_extended_role=*
@WIN-ALLOW:posinset*
@WIN-ALLOW:setsize*
@AURALINUX-ALLOW:expand*
@AURALINUX-ALLOW:focus*
@AURALINUX-ALLOW:posinset*
@AURALINUX-ALLOW:setsize*
-->
<!DOCTYPE html>
<html>
<body>
  <details>
    <summary>details tag</summary>
    <p>The details tag specifies additional details that the user can view or hide on demand.</p>
  </details>

  <details open>
    <summary>details tag open</summary>
    <p>The details tag with open specifies that the details should be visible (open) to the user.</p>
  </details>
</body>
</html>