40 lines
821 B
HTML
40 lines
821 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Storage Permission Restrictions</title>
|
|
<script type="text/javascript" src="storagePermissionsUtils.js"></script>
|
|
</head>
|
|
<body>
|
|
<iframe></iframe>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function ok(a, msg) {
|
|
opener.postMessage({type: "check", test: !!a, msg }, "*");
|
|
}
|
|
|
|
function is(a, b, msg) {
|
|
ok(a === b , msg);
|
|
}
|
|
|
|
let init = false;
|
|
onmessage = e => {
|
|
if (!init) {
|
|
init = true;
|
|
|
|
let runnableStr = `(() => {return (${e.data});})();`;
|
|
let runnable = eval(runnableStr); // eslint-disable-line no-eval
|
|
runnable.call(this).then(_ => {
|
|
opener.postMessage({ type: "finish" }, "*");
|
|
}).catch(e => {
|
|
ok(false, e.data);
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
parent.postMessage(e.data, "*");
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|