diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2018-04-30 21:09:29 -0400 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2018-04-30 23:01:48 -0400 |
commit | 816185f09488e7ac7c5595c0a4f9625601e5e72c (patch) | |
tree | c9b36f1514e941ce60bb552e6e2fda79cfeddd59 /tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js | |
parent | 847115ba0441b1b1a6ad98562b010f7e33b7b14d (diff) | |
download | servo-816185f09488e7ac7c5595c0a4f9625601e5e72c.tar.gz servo-816185f09488e7ac7c5595c0a4f9625601e5e72c.zip |
Update web-platform-tests to revision ea14651f262003177d0ba5819bd2806a1327b12a
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); |