mirror of
https://github.com/servo/servo.git
synced 2025-06-30 20:13:39 +01:00
7 lines
302 B
JavaScript
7 lines
302 B
JavaScript
// 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")
|