blob: cb29808383630a639b10e27167bab08247bcf2fb [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<input id="input1"></input>
<svg display="none" width="100" height="100">
<a xlink:href="#foo">
<text y="20">Link</text>
</a>
</svg>
<input id="input2"></input>
<script>
test(function() {
input1.focus();
assert_equals(document.activeElement, input1);
testRunner.overridePreference('WebKitTabToLinksPreferenceKey', true);
eventSender.keyDown('\t');
assert_equals(document.activeElement, input2);
}, 'SVG <a> which is display none does not block focus traversal');
</script>