blob: b2582ca4c2904b67d95e4fd9e63a4259e1766316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<script>
'use strict'
// Sends a message containing the result of navigator.storage.getDirectory()
// to its creator.
function post_message(data) {
if (window.parent !== null) {
window.parent.postMessage(data, { targetOrigin: '*' });
}
if (window.opener !== null) {
window.opener.postMessage(data, { targetOrigin: '*' });
}
}
try {
navigator.storage.getDirectory()
.then(() => {
post_message('navigator.storage.getDirectory(): FULFILLED');
}).catch(error => {
post_message(`navigator.storage.getDirectory(): REJECTED: ${error.name}`);
});
} catch (error) {
post_message(`navigator.storage.getDirectory(): EXCEPTION: ${error.name}`);
}
</script>
|