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: |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 | 45 |
46 function testCompleted() | 46 function testCompleted() |
47 { | 47 { |
48 if (window.testRunner) | 48 if (window.testRunner) |
49 testRunner.notifyDone(); | 49 testRunner.notifyDone(); |
50 } | 50 } |
51 | 51 |
52 window.onload = runTest; | 52 window.onload = runTest; |
53 </script> | 53 </script> |
54 <script src="js/resources/js-test-post.js"></script> | |
55 </head> | 54 </head> |
56 <body> | 55 <body> |
57 <table style="text-align: top;" border="0" cellpadding="3px" cellspacing="3px
"> | 56 <table style="text-align: top;" border="0" cellpadding="3px" cellspacing="3px
"> |
58 <tr> | 57 <tr> |
59 <td valign="top" width="10%"> | 58 <td valign="top" width="10%"> |
60 <a id="start" href="http://google.com">Link</a><br> | 59 <a id="start" href="http://google.com">Link</a><br> |
61 </td> | 60 </td> |
62 <td valign="top"> | 61 <td valign="top"> |
63 <iframe width="50%" height="100px" frameborder="1" src="data:text/html, | 62 <iframe width="50%" height="100px" frameborder="1" src="data:text/html, |
64 <body> | 63 <body> |
65 <a id='1' href='http://a'>b</a> | 64 <a id='1' href='http://a'>b</a> |
66 <a id='2' href='http://a'>c</a> | 65 <a id='2' href='http://a'>c</a> |
67 <a id='3' href='http://a'>d</a> | 66 <a id='3' href='http://a'>d</a> |
68 </body> | 67 </body> |
69 "></iframe><br> | 68 "></iframe><br> |
70 </td> | 69 </td> |
71 </tr> | 70 </tr> |
72 </table> | 71 </table> |
73 <div id="console"></div> | 72 <div id="console"></div> |
74 </body> | 73 </body> |
75 </html> | 74 </html> |
OLD | NEW |