3 <script src=
"../../resources/js-test.js"></script>
4 <script src=
"resources/spatial-navigation-utils.js"></script>
5 <script type=
"application/javascript">
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 testRunner.overridePreference(
"WebKitTabToLinksPreferenceKey",
1);
15 window.internals.settings.setSpatialNavigationEnabled(true);
16 testRunner.waitUntilDone();
21 // starting the test itself: get to a known place.
22 document.getElementById(
"start").focus();
24 initTest(resultMap, testCompleted);
27 function testCompleted()
29 if (window.testRunner)
30 testRunner.notifyDone();
33 window.onload = runTest;
38 <body id=
"some-content" xmlns=
"http://www.w3.org/1999/xhtml">
39 <p>This is
<a id=
"start" href=
"a">link_1
</a>.
</p>
40 <br>This is
<a id=
"1" style=
"display:none;" href=
"a">you should not see me
</a> hidden link.
<br>
41 <p>This is
<a id=
"end" href=
"a">link_2
</a>.
</p>
42 <div id=
"console"></div>
43 <p>This test is to test that focusable elements with display:none do not grab the focus.
</p>