gecko-dev/docshell/base/crashtests/1584467.html
Kashav Madan 2a30c1ebe6 Bug 1585496 - Add a crashtest for bug 1584467, r=nika
Crashes without 25bc8db24a5a, as expected.

Differential Revision: https://phabricator.services.mozilla.com/D74444
2020-05-08 18:39:28 +00:00

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>