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 focusable elements in nested inner frame should be accessible. | 4 focusable elements in nested inner frame should be accessible. |
5 | 5 |
6 * Pre-conditions: | 6 * Pre-conditions: |
7 1) DRT support for spatial navigation enable/disable. | 7 1) DRT support for spatial navigation enable/disable. |
8 | 8 |
9 * Navigation steps: | 9 * Navigation steps: |
10 1) Loads this page, focus goes to "start" automatically. | 10 1) Loads this page, focus goes to "start" automatically. |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 } | 54 } |
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 </script> | 63 </script> |
64 <script src="js/resources/js-test-post.js"></script> | |
65 </head> | 64 </head> |
66 <body> | 65 <body> |
67 <table style="text-align: top;" border="0" cellpadding="3px" cellspacing="3px
"> | 66 <table style="text-align: top;" border="0" cellpadding="3px" cellspacing="3px
"> |
68 <tr> | 67 <tr> |
69 <td valign="top" width="10%"> | 68 <td valign="top" width="10%"> |
70 <a id="start" href="#">Link</a><br> | 69 <a id="start" href="#">Link</a><br> |
71 </td> | 70 </td> |
72 <td valign="top"> | 71 <td valign="top"> |
73 <iframe width="50%" height="100px" frameborder="1" src="resources/iframe
.html"></iframe><br> | 72 <iframe width="50%" height="100px" frameborder="1" src="resources/iframe
.html"></iframe><br> |
74 </td> | 73 </td> |
75 <td valign="top" width="10%"> | 74 <td valign="top" width="10%"> |
76 <a id="9" href="#">Link</a><br> | 75 <a id="9" href="#">Link</a><br> |
77 </td> | 76 </td> |
78 </tr> | 77 </tr> |
79 <tr> | 78 <tr> |
80 <td valign="top" width="10%"> | 79 <td valign="top" width="10%"> |
81 <a id="10" href="#">Link</a><br> | 80 <a id="10" href="#">Link</a><br> |
82 </td> | 81 </td> |
83 <td valign="top"> | 82 <td valign="top"> |
84 <p><a id="11" href="#">Here</a> is a link.</p> | 83 <p><a id="11" href="#">Here</a> is a link.</p> |
85 </td> | 84 </td> |
86 <td valign="top" width="10%"> | 85 <td valign="top" width="10%"> |
87 <a id="12" href="#">Link</a><br> | 86 <a id="12" href="#">Link</a><br> |
88 </td> | 87 </td> |
89 </tr> | 88 </tr> |
90 </table> | 89 </table> |
91 <div id="console"></div> | 90 <div id="console"></div> |
92 </body> | 91 </body> |
93 </html> | 92 </html> |
OLD | NEW |