| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <!-- | 2 <!-- |
| 3 This test ensures the correctness of a basic aspect of spatial navigation tr
aversal | 3 This test ensures the correctness of a basic aspect of spatial navigation tr
aversal |
| 4 routines: focusable elements in scrollable containers (e.g. <div>) should be | 4 routines: focusable elements in scrollable containers (e.g. <div>) should be |
| 5 accessible, including offscreen content. | 5 accessible, including offscreen content. |
| 6 | 6 |
| 7 * Pre-conditions: | 7 * Pre-conditions: |
| 8 1) DRT support for spatial navivation enable/disable. | 8 1) DRT support for spatial navivation enable/disable. |
| 9 | 9 |
| 10 * Navigation steps: | 10 * Navigation steps: |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 function testCompleted() | 48 function testCompleted() |
| 49 { | 49 { |
| 50 if (window.testRunner) | 50 if (window.testRunner) |
| 51 testRunner.notifyDone(); | 51 testRunner.notifyDone(); |
| 52 } | 52 } |
| 53 | 53 |
| 54 window.onload = runTest; | 54 window.onload = runTest; |
| 55 | 55 |
| 56 </script> | 56 </script> |
| 57 <script src="js/resources/js-test-post.js"></script> | |
| 58 </head> | 57 </head> |
| 59 <body> | 58 <body> |
| 60 <a href="#" id="start">This is an element</a><br> | 59 <a href="#" id="start">This is an element</a><br> |
| 61 | 60 |
| 62 <div> | 61 <div> |
| 63 <a href="#" id="1"> | 62 <a href="#" id="1"> |
| 64 </a> | 63 </a> |
| 65 </div> | 64 </div> |
| 66 | 65 |
| 67 <div> | 66 <div> |
| 68 <a href="#" id="2">This is an element</a><br> | 67 <a href="#" id="2">This is an element</a><br> |
| 69 </div> | 68 </div> |
| 70 <div id="console"></div> | 69 <div id="console"></div> |
| 71 <div>This test tests that a anchor element with only white spaces gives the
correct size in ContainerNode::getRect().</div> | 70 <div>This test tests that a anchor element with only white spaces gives the
correct size in ContainerNode::getRect().</div> |
| 72 </body> | 71 </body> |
| 73 </html> | 72 </html> |
| 74 | 73 |
| OLD | NEW |