Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/stylesheet-dom-mutation-event-crash.html - WPT Dashboard Interop Dashboard
<script>
function go() {
b.innerHTML = undefined
}
document.addEventListener("DOMContentLoaded", () => {
b.appendChild(document.createTextNode(""))
a.addEventListener("DOMNodeRemoved", go)
go();
})
</script>
<div id="a">
<style id="b">
</style>