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

content / test / data / accessibility / aria / aria-details-reference-target.html [blame]

<!--
@BLINK-ALLOW:details*
-->
<!DOCTYPE html>
<html>
  <body>
    <p>This <span aria-details="details details2">text</span> has details</p>
    <x-description id="details">
      <template shadowrootmode="open" shadowrootreferencetarget="target">
        <div role="group" id="target">Text details</div>
      </template>
    </x-description>
    <x-description id="details2">
      <template shadowrootmode="open" shadowrootreferencetarget="target">
        <img id="target" alt="Image details">
      </template>
    </x-description>
  </body>
</html>