aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/websockets/Create-valid-url-protocol-empty.any.js
blob: 0bf2ff53bbc8e1fa84fa4b2728c7a3f24cd14ef8 (plain) (blame)
1
2
3
4
5
6
7
// META: script=websocket.sub.js

test(function() {
  var wsocket = CreateWebSocket(false, true, false);
  assert_equals(wsocket.protocol, "", "protocol should be empty");
  wsocket.close();
}, "Create WebSocket - wsocket.protocol should be empty before connection is established")