summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shared-storage/resources/verify-shared-storage.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/shared-storage/resources/verify-shared-storage.https.html')
-rw-r--r--testing/web-platform/tests/shared-storage/resources/verify-shared-storage.https.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/shared-storage/resources/verify-shared-storage.https.html b/testing/web-platform/tests/shared-storage/resources/verify-shared-storage.https.html
new file mode 100644
index 0000000000..52c79e7e85
--- /dev/null
+++ b/testing/web-platform/tests/shared-storage/resources/verify-shared-storage.https.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+<body>
+<script>
+ try {
+ window.sharedStorage;
+ window.parent.postMessage({ accessSharedStorageResult: 'success'}, "*");
+ } catch (error) {
+ window.parent.postMessage({ accessSharedStorageResult: 'failure'}, "*");
+ }
+</script>
+</body>
+</html>