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

content / test / data / accessibility / aria / aria-description.html [blame]

<!--
@UIA-WIN-ALLOW:FullDescription*
@BLINK-ALLOW:desc*
@WIN-ALLOW:desc*
@AURALINUX-ALLOW:desc*
-->
<!--
Note, in the IA2/ATK output, the description property and object attribute are different.
The description object attribute reflects only aria-description, and no other description sources.
* description='xxx' (property)
* description:xxx (object attribute)
-->
<!DOCTYPE html>
<html>
<body>
  <div aria-label="description" aria-description="Text-description" ></div>
  <div aria-label="both" aria-description="describedby overrides description" aria-describedby="desc1" ></div>
  <div role="tooltip" id="desc1">Description from describedby</div>
</body>
</html>