gecko-dev/dom/base/crashtests/1577191.html
Emilio Cobos Álvarez 964d721a80 Bug 1577191 - Crashtest.
Differential Revision: https://phabricator.services.mozilla.com/D44155

--HG--
extra : moz-landing-system : lando
2019-08-30 14:08:27 +00:00

16 lines
408 B
HTML

<!doctype html>
<script>
function start () {
const frame = document.createElement('frame')
document.documentElement.appendChild(frame)
const o1 = document.createElement('c')
o1.insertBefore(frame, o1.childNodes[0])
SpecialPowers.gc();
const xhr = new XMLHttpRequest()
xhr.open('P', '', false)
xhr.send()
}
document.addEventListener('DOMContentLoaded', start)
</script>