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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 function testCompleted() | 56 function testCompleted() |
57 { | 57 { |
58 if (window.testRunner) | 58 if (window.testRunner) |
59 testRunner.notifyDone(); | 59 testRunner.notifyDone(); |
60 } | 60 } |
61 | 61 |
62 window.onload = runTest; | 62 window.onload = runTest; |
63 | 63 |
64 </script> | 64 </script> |
65 <script src="js/resources/js-test-post.js"></script> | |
66 </head> | 65 </head> |
67 <body> | 66 <body> |
68 <a href="#" id="start">This is an element</a><br> | 67 <a href="#" id="start">This is an element</a><br> |
69 | 68 |
70 <div> | 69 <div> |
71 <a href="#" id="1"> | 70 <a href="#" id="1"> |
72 <img src="resources/green.png" height="42" width="76" border="0"/> | 71 <img src="resources/green.png" height="42" width="76" border="0"/> |
73 </a> | 72 </a> |
74 </div> | 73 </div> |
75 | 74 |
76 <div> | 75 <div> |
77 <a href="#" id="2">This is an element</a><br> | 76 <a href="#" id="2">This is an element</a><br> |
78 </div> | 77 </div> |
79 | 78 |
80 <a href="#" id="3">This is an element</a><br> | 79 <a href="#" id="3">This is an element</a><br> |
81 | 80 |
82 <a href="#" id="4"> | 81 <a href="#" id="4"> |
83 <img src="resources/green.png" height="42" width="76" alt="llinker1" borde
r="0"/> | 82 <img src="resources/green.png" height="42" width="76" alt="llinker1" borde
r="0"/> |
84 </a><br> | 83 </a><br> |
85 | 84 |
86 <a href="#" id="5">This is an element</a><br> | 85 <a href="#" id="5">This is an element</a><br> |
87 <div id="console"></div> | 86 <div id="console"></div> |
88 <div>This test tests that a anchor element with in image in it and a space a
fter the image, can still give the correct size in ContainerNode::getRect().</di
v> | 87 <div>This test tests that a anchor element with in image in it and a space a
fter the image, can still give the correct size in ContainerNode::getRect().</di
v> |
89 </body> | 88 </body> |
90 </html> | 89 </html> |
91 | 90 |
OLD | NEW |