summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.window.js
blob: 2892a4c3ab98740dc2fa8240b91217ff6dd49e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
setup({ allow_uncaught_exception: true });

test(function() {
  var events = [];
  window.onerror = function() {
    events.push("error");
  };

  var div = document.createElement("div");
  div.addEventListener("click", function (e) { events.push("click 1") });
  div.setAttribute("onclick", "}");
  div.addEventListener("click", function (e) { events.push("click 2") });
  div.dispatchEvent(new Event("click"));
  assert_equals(div.onclick, null);
  assert_array_equals(events, ["click 1", "error", "click 2"]);
}, "Invalid uncompiled raw handlers should only be compiled when about to call them");