aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/websockets/Create-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-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-valid-url-array-protocols.any.js')
-rw-r--r--tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js17
1 files changed, 9 insertions, 8 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 f8161334e5e..00ab1ca9873 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,21 @@
-// META: script=websocket.sub.js
+// META: script=constants.sub.js
+// META: variant=
+// META: variant=?wpt_flags=h2
+// META: variant=?wss
-var testOpen = async_test("Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be opened");
-var testClose = async_test("Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be closed");
+var test = async_test("Create WebSocket - Pass a valid URL and array of protocol strings - Connection should be closed");
-var wsocket = CreateWebSocket(false, false, true);
+var wsocket = CreateWebSocket(false, true);
var isOpenCalled = false;
-wsocket.addEventListener('open', testOpen.step_func(function(evt) {
+wsocket.addEventListener('open', test.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) {
+wsocket.addEventListener('close', test.step_func(function(evt) {
assert_true(isOpenCalled, "WebSocket connection should be open");
assert_equals(evt.wasClean, true, "wasClean should be true");
- testClose.done();
+ test.done();
}), true);