summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/html_ws-early-connection-page.html
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/netmonitor/test/html_ws-early-connection-page.html')
-rw-r--r--devtools/client/netmonitor/test/html_ws-early-connection-page.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/test/html_ws-early-connection-page.html b/devtools/client/netmonitor/test/html_ws-early-connection-page.html
new file mode 100644
index 0000000000..9bc062f85f
--- /dev/null
+++ b/devtools/client/netmonitor/test/html_ws-early-connection-page.html
@@ -0,0 +1,24 @@
+<!-- Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ -->
+<!doctype HTML>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>WebSocket Inspection Test Page</title>
+ </head>
+ <body>
+ <h1>WebSocket Inspection Test Page</h1>
+ <script type="text/javascript">
+ "use strict";
+ const ws = new WebSocket(
+ "ws://mochi.test:8888/browser/devtools/client/netmonitor/test/file_ws_backend");
+
+ ws.onopen = () => {
+ ws.send("readyState:" + document.readyState);
+ ws.close();
+ }
+ </script>
+ <script type="text/javascript"
+ src="http://example.com/browser/devtools/client/netmonitor/test/sjs_slow-script-server.sjs"></script>
+ </body>
+</html>