Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: (os == 'android')
- Manifest: dom/fs/test/crashtests/crashtests.list
<script>
window.addEventListener('load', async () => {
const dir = await navigator.storage.getDirectory();
const file = await dir.getFileHandle('555b8afb-96ac-4fe3-8cec', { create: true });
const writable = await file.createWritable({});
setTimeout('self.close()', 2000)
})
</script>