summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/general/window_storagePermissions.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/mochitest/general/window_storagePermissions.html')
-rw-r--r--dom/tests/mochitest/general/window_storagePermissions.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/dom/tests/mochitest/general/window_storagePermissions.html b/dom/tests/mochitest/general/window_storagePermissions.html
new file mode 100644
index 0000000000..3bab23c13b
--- /dev/null
+++ b/dom/tests/mochitest/general/window_storagePermissions.html
@@ -0,0 +1,38 @@
+<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" }, "*");
+ });
+
+ return;
+ }
+
+ parent.postMessage(e.data, "*");
+}
+
+ </script>
+ </body>
+</html>