Update web-platform-tests to revision be959408023fe02cf79abe70f6018598a7004a88

This commit is contained in:
WPT Sync Bot 2018-06-11 21:57:51 -04:00
parent a76777b115
commit 761c8bc2a9
171 changed files with 2434 additions and 907 deletions

View file

@ -8,7 +8,7 @@
<script>
async_test(function(t) {
var img = document.getElementById("brokenurl");
img.src = "http://also a broken url";
img.src = "http://[";
var errorevent = false;
// The errors should be queued in the event loop, so they should only trigger
@ -17,7 +17,7 @@ async_test(function(t) {
img.addEventListener('loadend', t.step_func_done(function() {
assert_true(errorevent, "error event fired");
}));
}, 'src="http://also a broken url"');
}, 'src="http://["');
async_test(function(t) {
var img = document.getElementById("emptysrc");