summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/Close-clamp.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/websockets/Close-clamp.htm')
-rw-r--r--testing/web-platform/tests/websockets/Close-clamp.htm14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/websockets/Close-clamp.htm b/testing/web-platform/tests/websockets/Close-clamp.htm
new file mode 100644
index 000000000..6660e813e
--- /dev/null
+++ b/testing/web-platform/tests/websockets/Close-clamp.htm
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<title>WebSocket#close(2**16+1000)</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="websocket.sub.js"></script>
+<div id="log"></div>
+<script>
+test(function() {
+ var ws = CreateWebSocket(false, false, false);
+ assert_throws("InvalidAccessError", function () {
+ ws.close(0x10000 + 1000);
+ });
+});
+</script>