diff options
Diffstat (limited to 'testing/web-platform/tests/shared-storage/insecure-context.tentative.http.html')
-rw-r--r-- | testing/web-platform/tests/shared-storage/insecure-context.tentative.http.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shared-storage/insecure-context.tentative.http.html b/testing/web-platform/tests/shared-storage/insecure-context.tentative.http.html new file mode 100644 index 0000000000..7ddf02f861 --- /dev/null +++ b/testing/web-platform/tests/shared-storage/insecure-context.tentative.http.html @@ -0,0 +1,10 @@ +<!doctype html> +<body> + <script src=/resources/testharness.js></script> + <script src=/resources/testharnessreport.js></script> + <script> + test(t => { + assert_equals(window.sharedStorage, undefined); + }, 'test window.sharedStorage in insecure context'); + </script> +</body> |