Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/interaction/focus/the-autofocus-attribute/skip-another-top-level-browsing-context.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/utils.js"></script>
<script>
'use strict';
promise_test(async () => {
let w = window.open('resources/moving-autofocus-to-parent.html');
await waitForLoad(w);
await waitUntilStableAutofocusState(w);
assert_equals(w.document.activeElement, w.document.body);
assert_equals(document.activeElement, document.body);
w.close();
}, 'Autofocus elements queued in another top-level browsing context\'s ' +
'documents should be skipped.');
</script>