Auto merge of #13136 - servo:error-test, r=nox

Add a test for the exact timing of the error event for invalid event …

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13136)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-08-31 10:25:17 -05:00 committed by GitHub
commit 59a0be0068
3 changed files with 36 additions and 0 deletions

View file

@ -37244,6 +37244,12 @@
"path": "html/semantics/text-level-semantics/the-data-element/data.value-001.html",
"url": "/html/semantics/text-level-semantics/the-data-element/data.value-001.html"
}
],
"html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html": [
{
"path": "html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html",
"url": "/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html"
}
]
}
},

View file

@ -0,0 +1,5 @@
[invalid-uncompiled-raw-handler-compiled-late.html]
type: testharness
[Invalid uncompiled raw handlers should only be compiled when about to call them.]
expected: FAIL

View file

@ -0,0 +1,25 @@
<!doctype html>
<meta charset="utf-8">
<title>Invalid uncompiled raw handlers should only be compiled when about to call them.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
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"]);
});
</script>
</body>