summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/crashtests/1813284-1.html
blob: fd1d8987bc504974a46de6e655199f6fadbd9771 (plain)
1
2
3
4
5
6
<script>
  // This test allocates >= 4GB of memory even if it succeeds.
  let a = new ArrayBuffer(4294967296)
  let b = new Uint32Array(a)
  self.indexedDB.cmp(b, undefined)
</script>