Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 3 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /svg/struct/scripted/autofocus-attribute.svg - WPT Dashboard Interop Dashboard
<?xml version="1.0" encoding="UTF-8"?>
<title>Autofocus attribute</title>
<metadata>
</metadata>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<h:script src="/html/interaction/focus/the-autofocus-attribute/resources/utils.js"/>
<script><![CDATA[
promise_test(async t => {
let w = window.open('blank.svg');
await waitForLoad(w);
t.add_cleanup(() => { w.close(); });
const svgA = w.document.createElementNS(SVG_NS, 'a');
svgA.setAttribute('href', '#');
svgA.setAttribute('autofocus', 'autofocus');
w.document.documentElement.appendChild(svgA);
await waitUntilStableAutofocusState(w);
assert_equals(w.document.activeElement, svgA);
}, '<a> should support autofocus');
promise_test(async t => {
let w = window.open('blank.svg');
await waitForLoad(w);
t.add_cleanup(() => { w.close(); });
const path = w.document.createElementNS(SVG_NS, 'path');
path.setAttribute('d', 'M0,0h8v8z');
path.setAttribute('tabindex', '0');
path.setAttribute('autofocus', 'autofocus');
w.document.documentElement.appendChild(path);
await waitUntilStableAutofocusState(w);
assert_equals(w.document.activeElement, path);
}, 'Renderable element with tabindex should support autofocus');
promise_test(async t => {
let w = window.open('blank.svg');
await waitForLoad(w);
t.add_cleanup(() => { w.close(); });
let element = w.document.createElementNS(SVG_NS, 'metadata');
element.setAttribute('tabindex', '0');
element.setAttribute('autofocus', 'autofocus');
w.document.documentElement.appendChild(element);
await waitUntilStableAutofocusState(w);
// 6. If candidate's document element is non-null, then return that document
// element.
assert_equals(w.document.activeElement.tagName, 'svg');
}, 'Never-rendered element with tabindex should not support autofocus');
]]></script>
</svg>