OLD | NEW |
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 This test ensures the content overflow traversal correctness of Spatial Navi
gation | 3 This test ensures the content overflow traversal correctness of Spatial Navi
gation |
4 algorithm: focusable elements in an scrollable containers (e.g. <div>) shoul
d be | 4 algorithm: focusable elements in an scrollable containers (e.g. <div>) shoul
d be |
5 accessible, including offscreen content. | 5 accessible, including offscreen content. |
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 function testCompleted() | 51 function testCompleted() |
52 { | 52 { |
53 if (window.testRunner) | 53 if (window.testRunner) |
54 testRunner.notifyDone(); | 54 testRunner.notifyDone(); |
55 } | 55 } |
56 | 56 |
57 window.onload = runTest; | 57 window.onload = runTest; |
58 | 58 |
59 </script> | 59 </script> |
60 <script src="js/resources/js-test-post.js"></script> | |
61 </head> | 60 </head> |
62 | 61 |
63 | 62 |
64 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> | 63 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> |
65 | 64 |
66 <div style="margin-left:120px"> | 65 <div style="margin-left:120px"> |
67 <a id="off" class="offscreen" href="a">offscreen content</a> | 66 <a id="off" class="offscreen" href="a">offscreen content</a> |
68 <a id="start" href="a">Right link</a> | 67 <a id="start" href="a">Right link</a> |
69 </div><br> | 68 </div><br> |
70 <a id="1" href="a">Down link</a><br> | 69 <a id="1" href="a">Down link</a><br> |
71 <div id="console"></div> | 70 <div id="console"></div> |
72 </body> | 71 </body> |
73 </html> | 72 </html> |
74 | 73 |
OLD | NEW |