summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1577191.html
blob: 603157dd52eae62260fa03d6632720fedf6418e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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>