diff options
Diffstat (limited to '')
-rw-r--r-- | test/wpt/tests/websockets/Create-valid-url-protocol-empty.any.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/wpt/tests/websockets/Create-valid-url-protocol-empty.any.js b/test/wpt/tests/websockets/Create-valid-url-protocol-empty.any.js new file mode 100644 index 0000000..f18a9d8 --- /dev/null +++ b/test/wpt/tests/websockets/Create-valid-url-protocol-empty.any.js @@ -0,0 +1,10 @@ +// META: script=constants.sub.js +// META: variant=?default +// META: variant=?wpt_flags=h2 +// META: variant=?wss + +test(function() { + var wsocket = CreateWebSocket(true, false); + assert_equals(wsocket.protocol, "", "protocol should be empty"); + wsocket.close(); +}, "Create WebSocket - wsocket.protocol should be empty before connection is established") |