https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4f010356f8ff7262480ca750e1a851847d3cb868 authored by Ovidio Henriquez on 05 April 2018, 20:42:03 UTC
bluetooth: SetNextUnsubscribeFromNotifications
Tip revision: 4f01035
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