chromium/content/test/data/accessibility/aria/aria-description.html

<!--
@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>