Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/selectors/invalidation/nth-of-namespace-class-invalidation-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
*|*:nth-child(+0n of S) { color: red }
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
a.appendChild(b)
document.documentElement.appendChild(a)
b.offsetTop;
b.setAttributeNS("h", "class", "")
})
</script>