Skip to content

Commit

Permalink
Bug 1787109 [wpt PR 35612] - Add aspect-ratio test for failing images…
Browse files Browse the repository at this point in the history
…, a=testonly

Automatic update from web-platform-tests
Add aspect-ratio test for block & inline-block failing images (#35612)

--

wpt-commits: 4655ddb003a75dd1285192779318e38aecca306e
wpt-pr: 35612
  • Loading branch information
moz-wptsync-bot committed Sep 23, 2022
1 parent eed2465 commit 2fb017d
Showing 1 changed file with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<title>CSS aspect-ratio: img</title>
<link rel="author" title="Jake Archibald" href="jakearchibald@google.com" />
<link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
img {
width: 100px;
aspect-ratio: 1/2;
background: green;
}
</style>
<div id="log"></div>

<img
src="error.png"
style="display: block"
alt="display:block img should be 200px high"
/>

<img
src="error.png"
style="display: inline-block"
alt="display:inline-block img should be 200px high"
/>

<script>
setup({ explicit_done: true });

onload = () => {
for (const img of document.images) {
test(() => {
assert_equals(img.offsetHeight, 200);
}, img.alt);
}

done();
};
</script>

0 comments on commit 2fb017d

Please sign in to comment.