Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/DOMParser-interface
/
.
/
css
/
cssom
/
stylesheet-dom-mutation-event-crash.html
blob: 942660c7a53e194455aa04ad6e2b1e902f322449 [
file
] [
log
] [
blame
] [
edit
]
<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>