summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/eventhandlers.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/websockets/eventhandlers.html')
-rw-r--r--testing/web-platform/tests/websockets/eventhandlers.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/web-platform/tests/websockets/eventhandlers.html b/testing/web-platform/tests/websockets/eventhandlers.html
deleted file mode 100644
index 95aeb0b12..000000000
--- a/testing/web-platform/tests/websockets/eventhandlers.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<title>WebSocket event handlers</title>
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="websocket.sub.js"></script>
-<div id="log"></div>
-<script>
-function testEventHandler(name) {
- test(function() {
- var ws = new WebSocket("ws://" + __SERVER__NAME + ":" + __PORT + "/" + __PATH,
- "echo")
- assert_equals(ws["on" + name], null);
- ws["on" + name] = function() {};
- ws["on" + name] = 2;
- assert_equals(ws["on" + name], null);
- }, "Event handler for " + name + " should have [TreatNonCallableAsNull]")
-}
-["open", "error", "close", "message"].forEach(testEventHandler);
-</script>