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 algorithm: focusable elements in an <iframe> should be accessible even when | 4 algorithm: focusable elements in an <iframe> should be accessible even when |
5 the current focused element is in another <iframe> in the same page. | 5 the current focused element is in another <iframe> in the same page. |
6 | 6 |
7 * Pre-conditions: | 7 * Pre-conditions: |
8 1) DRT support for SNav enable/disable. | 8 1) DRT support for SNav enable/disable. |
9 | 9 |
10 * Navigation steps: | 10 * Navigation steps: |
11 1) Loads this page, focus goes to "start" automatically. | 11 1) Loads this page, focus goes to "start" automatically. |
12 2) Focus moves along the elements in the two iframes in the | 12 2) Focus moves along the elements in the two iframes in the |
13 Web page, eventually going to outer an southward link, but | 13 Web page, eventually going to outer an southward link, but |
14 going back to the iframe on the top later on. | 14 going back to the iframe on the top later on. |
15 --> | 15 --> |
16 <head> | 16 <head> |
17 <script src="../js/resources/js-test-pre.js"></script> | 17 <script src="../../resources/js-test.js"></script> |
18 <script src="resources/spatial-navigation-utils.js"></script> | 18 <script src="resources/spatial-navigation-utils.js"></script> |
19 <script type="application/javascript"> | 19 <script type="application/javascript"> |
20 | 20 |
21 var resultMap = [ | 21 var resultMap = [ |
22 ["Right", "1"], | 22 ["Right", "1"], |
23 ["Right", "2"], | 23 ["Right", "2"], |
24 ["Right", "3"], | 24 ["Right", "3"], |
25 ["Left", "2"], | 25 ["Left", "2"], |
26 ["Left", "1"], | 26 ["Left", "1"], |
27 ["Left", "start"], | 27 ["Left", "start"], |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 <a id='2' href='http://a'>c</a> | 65 <a id='2' href='http://a'>c</a> |
66 <a id='3' href='http://a'>d</a> | 66 <a id='3' href='http://a'>d</a> |
67 </body> | 67 </body> |
68 "></iframe><br> | 68 "></iframe><br> |
69 </td> | 69 </td> |
70 </tr> | 70 </tr> |
71 </table> | 71 </table> |
72 <div id="console"></div> | 72 <div id="console"></div> |
73 </body> | 73 </body> |
74 </html> | 74 </html> |
OLD | NEW |