summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/multi-globals/support
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webmessaging/multi-globals/support')
-rw-r--r--testing/web-platform/tests/webmessaging/multi-globals/support/current-document-domain.sub.html10
-rw-r--r--testing/web-platform/tests/webmessaging/multi-globals/support/current.html5
-rw-r--r--testing/web-platform/tests/webmessaging/multi-globals/support/incumbent-document-domain.sub.html14
-rw-r--r--testing/web-platform/tests/webmessaging/multi-globals/support/incumbent.html13
4 files changed, 42 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webmessaging/multi-globals/support/current-document-domain.sub.html b/testing/web-platform/tests/webmessaging/multi-globals/support/current-document-domain.sub.html
new file mode 100644
index 0000000000..1b15f72ca4
--- /dev/null
+++ b/testing/web-platform/tests/webmessaging/multi-globals/support/current-document-domain.sub.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Current page used as a test helper</title>
+
+<h1>Current</h1>
+
+<script>
+"use strict";
+document.domain = "{{hosts[][]}}";
+</script>
diff --git a/testing/web-platform/tests/webmessaging/multi-globals/support/current.html b/testing/web-platform/tests/webmessaging/multi-globals/support/current.html
new file mode 100644
index 0000000000..d05709dd43
--- /dev/null
+++ b/testing/web-platform/tests/webmessaging/multi-globals/support/current.html
@@ -0,0 +1,5 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Current page used as a test helper</title>
+
+<h1>Current</h1>
diff --git a/testing/web-platform/tests/webmessaging/multi-globals/support/incumbent-document-domain.sub.html b/testing/web-platform/tests/webmessaging/multi-globals/support/incumbent-document-domain.sub.html
new file mode 100644
index 0000000000..4791c29be7
--- /dev/null
+++ b/testing/web-platform/tests/webmessaging/multi-globals/support/incumbent-document-domain.sub.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Incumbent page used as a test helper</title>
+
+<h1>Incumbent</h1>
+
+<script>
+"use strict";
+document.domain = "{{hosts[][]}}";
+
+window.createBroadcastChannel = (...args) => {
+ return new parent.frames[1].BroadcastChannel(...args);
+};
+</script>
diff --git a/testing/web-platform/tests/webmessaging/multi-globals/support/incumbent.html b/testing/web-platform/tests/webmessaging/multi-globals/support/incumbent.html
new file mode 100644
index 0000000000..a06e93c7ab
--- /dev/null
+++ b/testing/web-platform/tests/webmessaging/multi-globals/support/incumbent.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Incumbent page used as a test helper</title>
+
+<h1>Incumbent</h1>
+
+<script>
+"use strict";
+
+window.createMessageChannel = () => {
+ return new parent.frames[1].MessageChannel();
+};
+</script>