Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/testing/web-platform/tests/svg/struct/scripted/autofocus-attribute.svg
<?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[
const SVG_NS = 'http://www.w3.org/2000/svg';
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>