diff options
Diffstat (limited to 'test/wpt/tests/websockets/Create-url-with-space.any.js')
-rw-r--r-- | test/wpt/tests/websockets/Create-url-with-space.any.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/wpt/tests/websockets/Create-url-with-space.any.js b/test/wpt/tests/websockets/Create-url-with-space.any.js new file mode 100644 index 0000000..f2bea5b --- /dev/null +++ b/test/wpt/tests/websockets/Create-url-with-space.any.js @@ -0,0 +1,12 @@ +// META: script=constants.sub.js +// META: variant=?default +// META: variant=?wpt_flags=h2 +// META: variant=?wss + +test(function() { + var wsocket; + var spaceUrl = "web platform.test"; + assert_throws_dom("SYNTAX_ERR", function() { + wsocket = CreateWebSocketWithSpaceInUrl(spaceUrl) + }); +}, "Create WebSocket - Pass a URL with a space - SYNTAX_ERR should be thrown") |