aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js
diff options
context:
space:
mode:
authorWPT Sync Bot <josh+wptsync@joshmatthews.net>2021-09-07 11:16:33 +0000
committercybai <cyb.ai.815@gmail.com>2022-01-17 16:30:29 +0900
commit58e8ee674b032274959b4461fd46ceda8f709e96 (patch)
tree4953c044dba6b52224d5144747af1bc3773a7ebc /tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js
parent35e95f55a1b9e488d1c796c8fb39d764d090d660 (diff)
downloadservo-58e8ee674b032274959b4461fd46ceda8f709e96.tar.gz
servo-58e8ee674b032274959b4461fd46ceda8f709e96.zip
Update web-platform-tests to revision b'468d01bbd84da2babf265c6af46947be68713440'
Diffstat (limited to 'tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js')
-rw-r--r--tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js b/tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js
deleted file mode 100644
index b0ebe6a0dbe..00000000000
--- a/tests/wpt/web-platform-tests/websockets/Create-Secure-valid-url-array-protocols.any.js
+++ /dev/null
@@ -1,20 +0,0 @@
-// META: script=websocket.sub.js
-
-var testOpen = async_test("Create Secure WebSocket - Pass a valid URL and array of protocol strings - Connection should be opened");
-var testClose = async_test("Create Secure WebSocket - Pass a valid URL and array of protocol strings - Connection should be closed");
-
-var wsocket = CreateWebSocket(true, 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('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);