diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js')
-rw-r--r-- | tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js b/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js index 28c6b4621ac..dde0303aa0f 100644 --- a/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js +++ b/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js @@ -1,20 +1,20 @@ // META: script=websocket.sub.js - var testOpen = async_test("W3C WebSocket API - Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be opened"); - var testClose = async_test("W3C WebSocket API - Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be closed"); +var testOpen = async_test("W3C WebSocket API - Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be opened"); +var testClose = async_test("W3C WebSocket API - Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be closed"); - var wsocket = CreateWebSocket(false, false, true); - var isOpenCalled = false; +var wsocket = CreateWebSocket(false, false, true); +var isOpenCalled = false; - wsocket.addEventListener('open', testOpen.step_func(function (evt) { - assert_equals(wsocket.readyState, 1, "readyState should be 1(OPEN)"); - wsocket.close(); - isOpenCalled = true; - testOpen.done(); - }), true); +wsocket.addEventListener('open', testOpen.step_func(function(evt) { + assert_equals(wsocket.readyState, 1, "readyState should be 1(OPEN)"); + wsocket.close(); + isOpenCalled = true; + testOpen.done(); +}), true); - wsocket.addEventListener('close', testClose.step_func(function (evt) { - assert_true(isOpenCalled, "WebSocket connection should be open"); - assert_equals(evt.wasClean, true, "wasClean should be true"); - testClose.done(); - }), true); +wsocket.addEventListener('close', testClose.step_func(function(evt) { + assert_true(isOpenCalled, "WebSocket connection should be open"); + assert_equals(evt.wasClean, true, "wasClean should be true"); + testClose.done(); +}), true); |