summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/multi-globals/support/incumbent.sub.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/websockets/multi-globals/support/incumbent.sub.html')
-rw-r--r--testing/web-platform/tests/websockets/multi-globals/support/incumbent.sub.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/websockets/multi-globals/support/incumbent.sub.html b/testing/web-platform/tests/websockets/multi-globals/support/incumbent.sub.html
new file mode 100644
index 0000000000..a138b70235
--- /dev/null
+++ b/testing/web-platform/tests/websockets/multi-globals/support/incumbent.sub.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<title>Incumbent page used as a test helper</title>
+
+<iframe src="relevant.html" id="r"></iframe>
+
+<script>
+"use strict";
+
+const relevant = document.querySelector("#r").contentWindow;
+
+window.setupWebSocket = (binaryType, fn) => {
+ const wsocket = new relevant.WebSocket("ws://{{host}}:{{ports[ws][0]}}/echo");
+
+ wsocket.addEventListener("open", () => {
+ wsocket.binaryType = binaryType;
+ wsocket.send(new ArrayBuffer(15));
+ });
+
+ wsocket.addEventListener("message", ev => {
+ fn(relevant, ev);
+ });
+};
+
+</script>