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/focus-after-attach-shadow-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
#outer { overflow: hidden; }
</style>
<div id="outer"><span id="inner" tabindex="1">hello</span></div>
<script>
window.addEventListener("load", _ => {
document.body.attachShadow({mode: "open"});
inner.focus();
});
</script>