forked from servo/servo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20626a8
commit a686565
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...web-platform-tests/html/semantics/embedded-content/the-img-element/null-image-source.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!doctype html> | ||
<meta charset="utf-8"> | ||
<title>Loading a null image source with empty src, empty srcset or having parent picture should fire an error</title> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<div id=log></div> | ||
<img src=""> | ||
<img srcset=""> | ||
<parent><img></parent> | ||
<script> | ||
function check(img) { | ||
async_test(function(t) { | ||
img.onerror = t.step_func(function(e) { | ||
assert_equals(e.type, "error", "null image source check failed"); | ||
t.done(); | ||
}); | ||
}); | ||
} | ||
onload = function() { | ||
[].forEach.call(document.querySelectorAll('img'), check); | ||
done(); | ||
}; | ||
</script> |