Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/crashtests/css-focus-recalc.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Style recalculation on shadow host focus should not crash</title>
<style>
#host:not(:focus)::after {
content: 'text';
}
</style>
<div id="host" tabindex="0"></div>
<script>
host.attachShadow({mode: 'closed'});
host.focus();
</script>