| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
| 4 <script src="resources/spatial-navigation-utils.js"></script> | 4 <script src="resources/spatial-navigation-utils.js"></script> |
| 5 <script type="application/javascript"> | 5 <script type="application/javascript"> |
| 6 | 6 |
| 7 var resultMap = [ | 7 var resultMap = [ |
| 8 ["Down", "f2"], | 8 ["Down", "f2"], |
| 9 ["Down", "f3"], | 9 ["Down", "f3"], |
| 10 ["Down", "f3"], | 10 ["Down", "f3"], |
| 11 ["Down", "f4"], | 11 ["Down", "f4"], |
| 12 ["Down", "f4"], | 12 ["Down", "f4"], |
| 13 ["Down", "f5"], | 13 ["Down", "f5"], |
| 14 ["Down", "f5"], |
| 15 ["Down", "f6"], |
| 14 ["Down", "f6"], | 16 ["Down", "f6"], |
| 15 ["Down", "f9"], | 17 ["Down", "f9"], |
| 16 ["DONE", "DONE"] | 18 ["DONE", "DONE"] |
| 17 ]; | 19 ]; |
| 18 | 20 |
| 19 if (window.testRunner) { | 21 if (window.testRunner) { |
| 20 testRunner.dumpAsText(); | 22 testRunner.dumpAsText(); |
| 21 testRunner.overridePreference("WebKitTabToLinksPreferenceKey", 1); | 23 testRunner.overridePreference("WebKitTabToLinksPreferenceKey", 1); |
| 22 window.internals.settings.setSpatialNavigationEnabled(true); | 24 window.internals.settings.setSpatialNavigationEnabled(true); |
| 23 testRunner.waitUntilDone(); | 25 testRunner.waitUntilDone(); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 <div><a href="#" id="f7"><img src="resources/green.png" width=40px; height=40px;
></a></div> | 62 <div><a href="#" id="f7"><img src="resources/green.png" width=40px; height=40px;
></a></div> |
| 61 <div><a href="#" id="f8"><img src="resources/green.png" width=50px; height=40px;
></a></div> | 63 <div><a href="#" id="f8"><img src="resources/green.png" width=50px; height=40px;
></a></div> |
| 62 </div><br> | 64 </div><br> |
| 63 <div><a href="#" id="f9"><img src="resources/green.png" width=40px; height=40px;
></a></div> | 65 <div><a href="#" id="f9"><img src="resources/green.png" width=40px; height=40px;
></a></div> |
| 64 </div></div> | 66 </div></div> |
| 65 <div id="console"></div> | 67 <div id="console"></div> |
| 66 This test is testing that div with overflow:auto would scroll, by div with overf
low:hidden would not. | 68 This test is testing that div with overflow:auto would scroll, by div with overf
low:hidden would not. |
| 67 </body> | 69 </body> |
| 68 </html> | 70 </html> |
| 69 | 71 |
| OLD | NEW |