https://github.com/web-platform-tests/wpt
Raw File
Tip revision: acc0c18614330cd8cc280eae0a3a1977889f00c4 authored by Lennart Grahl on 09 May 2018, 13:35:25 UTC
Update all data channel tests to use async/await
Tip revision: acc0c18
Create-valid-url-protocol-empty.any.js
// META: script=websocket.sub.js

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