aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/websockets/Create-wrong-scheme.any.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/websockets/Create-wrong-scheme.any.js')
-rw-r--r--tests/wpt/web-platform-tests/websockets/Create-wrong-scheme.any.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/wpt/web-platform-tests/websockets/Create-wrong-scheme.any.js b/tests/wpt/web-platform-tests/websockets/Create-wrong-scheme.any.js
deleted file mode 100644
index 00cfffece60..00000000000
--- a/tests/wpt/web-platform-tests/websockets/Create-wrong-scheme.any.js
+++ /dev/null
@@ -1,11 +0,0 @@
-// META: script=constants.sub.js
-// META: variant=
-// META: variant=?wss
-// META: variant=?wpt_flags=h2
-
-test(function() {
- var wsocket;
- assert_throws_dom("SYNTAX_ERR", function() {
- wsocket = CreateWebSocketNonWsScheme()
- });
-}, "Create WebSocket - Pass a URL with a non ws/wss scheme - SYNTAX_ERR is thrown")