https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 341f3f54b111a7dcb76c7f08bc8982634a29fb8b authored by xlai on 19 March 2018, 15:32:35 UTC
Improve wpt testing on OffscreenCanvas convertToBlob
Tip revision: 341f3f5
eventhandlers.html
<!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>
back to top