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, 0 insertions, 14 deletions
diff --git a/testing/web-platform/tests/websockets/Close-clamp.htm b/testing/web-platform/tests/websockets/Close-clamp.htm
deleted file mode 100644
index 6660e813e..000000000
--- a/testing/web-platform/tests/websockets/Close-clamp.htm
+++ /dev/null
@@ -1,14 +0,0 @@
-<!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>