Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /websockets/eventhandlers.any.html?default - WPT Dashboard Interop Dashboard
- /websockets/eventhandlers.any.html?wpt_flags=h2 - WPT Dashboard Interop Dashboard
- /websockets/eventhandlers.any.html?wss - WPT Dashboard Interop Dashboard
- /websockets/eventhandlers.any.worker.html?default - WPT Dashboard Interop Dashboard
- /websockets/eventhandlers.any.worker.html?wpt_flags=h2 - WPT Dashboard Interop Dashboard
- /websockets/eventhandlers.any.worker.html?wss - WPT Dashboard Interop Dashboard
// META: script=constants.sub.js
// META: variant=?default
// META: variant=?wss
// META: variant=?wpt_flags=h2
function testEventHandler(name) {
test(function() {
var ws = CreateWebSocket(true, false);
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);