OLD | NEW |
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 This test ensures the correctness the following Spatial Navigation | 3 This test ensures the correctness the following Spatial Navigation |
4 (SNav) algorithm features. | 4 (SNav) algorithm features. |
5 | 5 |
6 1) There is no unit overflow in the Spatial Navigation algorithm while | 6 1) There is no unit overflow in the Spatial Navigation algorithm while |
7 calculating the best node candidate to move focus to. To test that this | 7 calculating the best node candidate to move focus to. To test that this |
8 page positions some elements 10000000 pixels far from each other (distanc
e | 8 page positions some elements 10000000 pixels far from each other (distanc
e |
9 that can considered large enough for most of the Web Pages on the | 9 that can considered large enough for most of the Web Pages on the |
10 Internet). | 10 Internet). |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 function step2Completed() | 82 function step2Completed() |
83 { | 83 { |
84 if (window.testRunner) | 84 if (window.testRunner) |
85 testRunner.notifyDone(); | 85 testRunner.notifyDone(); |
86 } | 86 } |
87 | 87 |
88 window.onload = runTest; | 88 window.onload = runTest; |
89 | 89 |
90 </script> | 90 </script> |
91 <script src="js/resources/js-test-post.js"></script> | |
92 </head> | 91 </head> |
93 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> | 92 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> |
94 <a id="start" href="a">Start</a> | 93 <a id="start" href="a">Start</a> |
95 <div style='margin-top:100000000px'> | 94 <div style='margin-top:100000000px'> |
96 <a id="end" href="a">End</a> | 95 <a id="end" href="a">End</a> |
97 </div> | 96 </div> |
98 <div id="console"></div> | 97 <div id="console"></div> |
99 </body> | 98 </body> |
100 </html> | 99 </html> |
OLD | NEW |