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>2018-04-25 21:10:30 -0400
committerAnthony Ramine <n.oxyde@gmail.com>2018-04-26 10:56:37 +0200
commit7d1071a6a48dfec5474fb79b63a7515492f7d397 (patch)
treef6b9b11cd542570f50e12b15e5d7feb666b7ffdb /tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js
parent6d42d2f1e82007b4c8f1a30c9f44707b51dcfbf2 (diff)
downloadservo-7d1071a6a48dfec5474fb79b63a7515492f7d397.tar.gz
servo-7d1071a6a48dfec5474fb79b63a7515492f7d397.zip
Update web-platform-tests to revision 5084587f6b05bf99ad09e7844be66dcc61070cdf
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.js20
1 files changed, 20 insertions, 0 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
new file mode 100644
index 00000000000..28c6b4621ac
--- /dev/null
+++ b/tests/wpt/web-platform-tests/websockets/Create-valid-url-array-protocols.any.js
@@ -0,0 +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 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('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);