diff options
Diffstat (limited to 'testing/web-platform/tests/websockets/Create-valid-url-protocol-empty.any.js')
-rw-r--r-- | testing/web-platform/tests/websockets/Create-valid-url-protocol-empty.any.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/websockets/Create-valid-url-protocol-empty.any.js b/testing/web-platform/tests/websockets/Create-valid-url-protocol-empty.any.js new file mode 100644 index 0000000000..9e1de6dab4 --- /dev/null +++ b/testing/web-platform/tests/websockets/Create-valid-url-protocol-empty.any.js @@ -0,0 +1,10 @@ +// META: script=constants.sub.js +// META: variant= +// 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") |