summaryrefslogtreecommitdiffstats
path: root/dom/file/tests/crashtests/1562891.html
blob: fff7606a8ad527779fd446e076f67036731445b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
  <script>
    function start () {
      const canvas = document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas')
      SpecialPowers.forceGC();
      canvas.toBlob(function (blob) {
        blob.stream()
        blob.arrayBuffer().then(() => {})
      })
    }

    window.addEventListener('load', start)
  </script>
</head>
</html>