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, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/websockets/eventhandlers.html b/testing/web-platform/tests/websockets/eventhandlers.html
new file mode 100644
index 000000000..95aeb0b12
--- /dev/null
+++ b/testing/web-platform/tests/websockets/eventhandlers.html
@@ -0,0 +1,19 @@
+<!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>