Commit b6fe9214 authored by Blink W3C Test Autoroller's avatar Blink W3C Test Autoroller Committed by Commit Bot

Import wpt@6d6693ed7b210428fa8a6a37710414aa4da05029

Using wpt-import in Chromium 8235be2d.

Build: https://build.chromium.org/p/chromium.infra.cron/builders/wpt-importer/builds/102

Directory owners for changes in this CL:
dom-dev@chromium.org:
  external/wpt/html

TBR=qyearsley@chromium.org
NOEXPORT=true

Change-Id: I8a0c6bc0d3aee764af04e088f0edeae7d1cbb3bc
Reviewed-on: https://chromium-review.googlesource.com/509810Reviewed-by: default avatarBlink W3C Test Autoroller <blink-w3c-test-autoroller@chromium.org>
Commit-Queue: Blink W3C Test Autoroller <blink-w3c-test-autoroller@chromium.org>
Cr-Commit-Position: refs/heads/master@{#473471}
parent ad43ae05
...@@ -204879,7 +204879,7 @@ ...@@ -204879,7 +204879,7 @@
"support" "support"
], ],
"html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html": [ "html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html": [
"3a16be9d55c95a04eb426676ff89802974e88b95", "f26d145d438561fb737956d50c37d165808d3ebf",
"testharness" "testharness"
], ],
"html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-once.html": [ "html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-once.html": [
This is a testharness.js-based test.
FAIL Invalid uncompiled raw handlers should only be compiled when about to call them. assert_array_equals: property 1, expected "error" but got "Error"
Harness: the test ran to completion.
...@@ -10,7 +10,7 @@ setup({ allow_uncaught_exception: true }); ...@@ -10,7 +10,7 @@ setup({ allow_uncaught_exception: true });
test(function() { test(function() {
var events = []; var events = [];
window.onerror = function() { window.onerror = function() {
events.push("Error"); events.push("error");
}; };
var div = document.createElement("div"); var div = document.createElement("div");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment