From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001
From: "Matt A. Tobin" <mattatobin@localhost.localdomain>
Date: Fri, 2 Feb 2018 04:16:08 -0500
Subject: Add m-esr52 at 52.6.0

---
 .../web-platform/tests/websockets/Close-string.htm | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 testing/web-platform/tests/websockets/Close-string.htm

(limited to 'testing/web-platform/tests/websockets/Close-string.htm')

diff --git a/testing/web-platform/tests/websockets/Close-string.htm b/testing/web-platform/tests/websockets/Close-string.htm
new file mode 100644
index 000000000..d394d5cca
--- /dev/null
+++ b/testing/web-platform/tests/websockets/Close-string.htm
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>W3C WebSocket API - Close WebSocket - Code is String</title>
+    <script type="text/javascript" src="/resources/testharness.js"></script>
+    <script type="text/javascript" src="/resources/testharnessreport.js"></script>
+    <script type="text/javascript" src="websocket.sub.js"></script>
+</head>
+<body>
+    <div id="log"></div>
+    <script type="text/javascript">
+
+        var test = async_test("W3C WebSocket API - Create WebSocket - Close the Connection - close(String) - INVALID_ACCESS_ERR is thrown");
+
+        var wsocket = CreateWebSocket(false, false, false);
+        var isOpenCalled = false;
+
+        wsocket.addEventListener('open', test.step_func(function (evt) {
+            assert_throws("INVALID_ACCESS_ERR", function () { wsocket.close('string') });
+            test.done();
+        }), true);
+    </script>
+
+</body>
+</html>
-- 
cgit v1.2.3