| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 5 | 5 |
| 6 <style>canvas { display: inline; border: 1px solid #000; }</style> | 6 <style>canvas { display: inline; border: 1px solid #000; }</style> |
| 7 <!-- No whitespace between canvases on purpose, so there's the same | 7 <!-- No whitespace between canvases on purpose, so there's the same |
| 8 number of children of the container element on all platforms. --> | 8 number of children of the container element on all platforms. --> |
| 9 <div id="container" tabIndex=0 aria-label="Container"><canvas id="canvas1" w
idth="100" height="100" aria-label="Canvas label">Fallback text</canvas><canvas
id="canvas2" width="100" height="100"><button>Inner button</button></canvas><can
vas id="canvas3-skipped" width="100" height="100"></canvas></div> | 9 <div id="container" tabIndex=0 aria-label="Container"><canvas id="canvas1" w
idth="100" height="100" aria-label="Canvas label">Fallback text</canvas><canvas
id="canvas2" width="100" height="100"><button>Inner button</button></canvas><can
vas id="canvas3-skipped" width="100" height="100"></canvas></div> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 debug('Canvas 1 description: ' + axCanvas1.description); | 24 debug('Canvas 1 description: ' + axCanvas1.description); |
| 25 debug('Canvas 1 role: ' + axCanvas1.role); | 25 debug('Canvas 1 role: ' + axCanvas1.role); |
| 26 | 26 |
| 27 var axCanvas2 = axContainer.childAtIndex(1); | 27 var axCanvas2 = axContainer.childAtIndex(1); |
| 28 debug('Canvas 2 description: ' + axCanvas2.description); | 28 debug('Canvas 2 description: ' + axCanvas2.description); |
| 29 debug('Canvas 2 role: ' + axCanvas2.role); | 29 debug('Canvas 2 role: ' + axCanvas2.role); |
| 30 } | 30 } |
| 31 | 31 |
| 32 </script> | 32 </script> |
| 33 | 33 |
| 34 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 35 </body> | 34 </body> |
| 36 </html> | 35 </html> |
| OLD | NEW |