summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-keeps-position.window.js
blob: f9443bf99a0a9dfd937d8d1cf3bd618a3734aa1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 3"); });
  assert_equals(div.onclick, null);
  assert_array_equals(events, ["error"]);

  events = [];
  div.onclick = function (e) { events.push("click 2"); };
  div.dispatchEvent(new Event("click"));
  assert_array_equals(events, ["click 1", "click 2", "click 3"]);
}, "Compiling invalid uncompiled raw handlers should keep the position in event listener list");