OLD | NEW |
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 This test ensures the cross iframe traversal correctness of Spatial Navigati
on | 3 This test ensures the cross iframe traversal correctness of Spatial Navigati
on |
4 algorithm: focusable elements in an <iframe> should be accessible even when | 4 algorithm: focusable elements in an <iframe> should be accessible even when |
5 the current focused element is in another <iframe> in the same page. | 5 the current focused element is in another <iframe> in the same page. |
6 | 6 |
7 * Pre-conditions: | 7 * Pre-conditions: |
8 1) DRT support for SNav enable/disable. | 8 1) DRT support for SNav enable/disable. |
9 | 9 |
10 * Navigation steps: | 10 * Navigation steps: |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 } | 56 } |
57 | 57 |
58 function testCompleted() | 58 function testCompleted() |
59 { | 59 { |
60 if (window.testRunner) | 60 if (window.testRunner) |
61 testRunner.notifyDone(); | 61 testRunner.notifyDone(); |
62 } | 62 } |
63 | 63 |
64 window.onload = runTest; | 64 window.onload = runTest; |
65 </script> | 65 </script> |
66 <script src="js/resources/js-test-post.js"></script> | |
67 </head> | 66 </head> |
68 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> | 67 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> |
69 <div><a id="start" href="a"><img src="resources/green.png" width=30 height=3
0></a></div> | 68 <div><a id="start" href="a"><img src="resources/green.png" width=30 height=3
0></a></div> |
70 | 69 |
71 <iframe width="80" height="80" scrolling="auto" src="data:text/html, | 70 <iframe width="80" height="80" scrolling="auto" src="data:text/html, |
72 <body> | 71 <body> |
73 <a id='1' href='a'><img src='no_image' width=30 height=30></a> | 72 <a id='1' href='a'><img src='no_image' width=30 height=30></a> |
74 <div> | 73 <div> |
75 <img src='no_image' width=50 height=300> | 74 <img src='no_image' width=50 height=300> |
76 <a id='2' href='a'><img src='no_image' width=30 height=30></a> | 75 <a id='2' href='a'><img src='no_image' width=30 height=30></a> |
77 </div> | 76 </div> |
78 </body> | 77 </body> |
79 "></iframe><br> | 78 "></iframe><br> |
80 | 79 |
81 <div><a id="end" href="a"><img src="resources/green.png" width=30 height=30>
</a></div> | 80 <div><a id="end" href="a"><img src="resources/green.png" width=30 height=30>
</a></div> |
82 <div id="console"></div> | 81 <div id="console"></div> |
83 </body> | 82 </body> |
84 </html> | 83 </html> |
OLD | NEW |