mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 6856483bcc86322198f10e0c42385a7f9127eb66
This commit is contained in:
parent
b1a2b6b5bf
commit
ff06f1d031
265 changed files with 7539 additions and 988 deletions
|
@ -0,0 +1,25 @@
|
|||
<!doctype html>
|
||||
<title>Images without alt attribute or with an empty alt attribute render as replaced elements regardless of src</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
|
||||
<link rel="author" href="https://mozilla.org" title="Mozilla">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1196668">
|
||||
<style>
|
||||
img {
|
||||
width: 100px;
|
||||
height: 150px;
|
||||
}
|
||||
</style>
|
||||
<img>
|
||||
<img src="broken">
|
||||
<img alt="">
|
||||
<script>
|
||||
const t = async_test("Images without alt attribute or with an empty alt attribute render as replaced elements regardless of src");
|
||||
onload = t.step_func_done(function() {
|
||||
for (const img of document.querySelectorAll("img")) {
|
||||
assert_equals(img.offsetWidth, 100, `width: ${img.outerHTML}`);
|
||||
assert_equals(img.offsetHeight, 150, `height: ${img.outerHTML}`);
|
||||
}
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue