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

content / test / data / accessibility / html / canvas-fallback.html [blame]

<!--
@AURALINUX-DENY:description-from*
@BLINK-DENY:descriptionFrom*
@BLINK-ALLOW:hierarchicalLevel*
@MAC-DENY:AXDescription='To get missing image descriptions, open the context menu.'
@MAC-ALLOW:accessibilityCustomContent
@MAC-ALLOW:AXHelp*
@WIN-DENY:description*
@WIN-ALLOW:description=*
@WIN-DENY:name*
-->
<html>

<body>
  <canvas width=100 height=100>Static fallback</canvas>
  <canvas width=100 height=100>
    <p id="p1" aria-describedby="h1">Line breaking content in a fallback</p>
    <p id="p2" aria-describedby="h2">This is another paragraph in fallback</p>
    <h1 id="h1"  aria-hidden="true">Aria hidden paragraph in fallback content</h1>
    <h1 style="display:none">Display none text in fallback content </h1>
    <h2 id="h2"  style="visibility: hidden">Visibility hidden paragraph in fallback content</h2>
  </canvas>
</body>

</html>