summaryrefslogtreecommitdiffstats
path: root/dom/fs/test/crashtests/1809759.html
blob: b9df8de02f3d442d4b31718dc5e12873a6cfd95b (plain)
1
2
3
4
5
6
7
8
9
10
<script>
document.addEventListener('DOMContentLoaded', async () => {
  document.location.search = '?'
  let a = self.navigator.storage
  let xhr = new XMLHttpRequest()
  xhr.open('POST', 'FOOBAR', false)
  xhr.send()
  await a.getDirectory()
})
</script>