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. |
11 2) Focus moves along the elements in the two level deep nested frame, | 11 2) Focus moves along the elements in the two level deep nested frame, |
12 but going back to the main frame later on. | 12 but going back to the main frame later on. |
13 --> | 13 --> |
14 <head> | 14 <head> |
15 <script src="../js/resources/js-test-pre.js"></script> | 15 <script src="../../resources/js-test.js"></script> |
16 <script src="resources/spatial-navigation-utils.js"></script> | 16 <script src="resources/spatial-navigation-utils.js"></script> |
17 <script type="application/javascript"> | 17 <script type="application/javascript"> |
18 | 18 |
19 var resultMap = [ | 19 var resultMap = [ |
20 ["Right", "1"], | 20 ["Right", "1"], |
21 ["Right", "2"], | 21 ["Right", "2"], |
22 ["Right", "3"], | 22 ["Right", "3"], |
23 ["Right", "4"], | 23 ["Right", "4"], |
24 ["Right", "5"], | 24 ["Right", "5"], |
25 ["Right", "6"], | 25 ["Right", "6"], |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 <p><a id="11" href="#">Here</a> is a link.</p> | 83 <p><a id="11" href="#">Here</a> is a link.</p> |
84 </td> | 84 </td> |
85 <td valign="top" width="10%"> | 85 <td valign="top" width="10%"> |
86 <a id="12" href="#">Link</a><br> | 86 <a id="12" href="#">Link</a><br> |
87 </td> | 87 </td> |
88 </tr> | 88 </tr> |
89 </table> | 89 </table> |
90 <div id="console"></div> | 90 <div id="console"></div> |
91 </body> | 91 </body> |
92 </html> | 92 </html> |
OLD | NEW |