mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
2a30c1ebe6
Crashes without 25bc8db24a5a, as expected. Differential Revision: https://phabricator.services.mozilla.com/D74444
13 lines
235 B
HTML
13 lines
235 B
HTML
<script>
|
|
window.onload = () => {
|
|
a.addEventListener("DOMSubtreeModified", () => {
|
|
document.body.appendChild(b)
|
|
document.body.removeChild(b)
|
|
window[1]
|
|
})
|
|
a.type = ""
|
|
}
|
|
</script>
|
|
<embed id="a">
|
|
<iframe id="b"></iframe>
|