summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/Create-protocol-with-space.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/websockets/Create-protocol-with-space.htm')
-rw-r--r--testing/web-platform/tests/websockets/Create-protocol-with-space.htm18
1 files changed, 0 insertions, 18 deletions
diff --git a/testing/web-platform/tests/websockets/Create-protocol-with-space.htm b/testing/web-platform/tests/websockets/Create-protocol-with-space.htm
deleted file mode 100644
index 023a49831..000000000
--- a/testing/web-platform/tests/websockets/Create-protocol-with-space.htm
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>W3C WebSocket API - Create WebSocket - protocol with space</title>
- <script type="text/javascript" src="/resources/testharness.js"></script>
- <script type="text/javascript" src="/resources/testharnessreport.js"></script>
- <script type="text/javascript" src="websocket.sub.js"></script>
-</head>
-<body>
- <div id="log"></div>
- <script type="text/javascript">
- test(function () {
- var wsocket;
- assert_throws("SYNTAX_ERR", function () { wsocket = CreateWebSocketWithSpaceInProtocol("ec ho") });
- }, "W3C WebSocket API - Create WebSocket - Pass a valid URL and a protocol string with a space in it - SYNTAX_ERR is thrown")
- </script>
-</body>
-</html>