fune/testing/web-platform/tests/css/css-display/display-none-inline-img-ref.html
vmpstr 326fa4de01 Bug 1523562 [wpt PR 15082] - Test: Add a display:none inline toggle test, a=testonly
Automatic update from web-platform-tests
Test: Add a display:none inline toggle test

This patch adds a test that exercises an invalidation path which
was recently fixed. The test is to ensure the behavior does not
regress.

R=chrishtr@chromium.org

Bug: 919954
Change-Id: I1e5d037462501b8bf81c0bcf8c909713ed6508ee
Reviewed-on: https://chromium-review.googlesource.com/c/1435684
Reviewed-by: Chris Harrelson <chrishtr@chromium.org>
Commit-Queue: vmpstr <vmpstr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#626574}

--

wpt-commits: cfa9ac2a264f58358af6aad8067d40714afe12e4
wpt-pr: 15082
2019-02-07 21:51:19 +00:00

46 lines
674 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<style>
.carousel {
position: relative;
overflow: hidden;
height: 300px;
}
.scroller {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: auto;
}
.slides {
width: 200%;
display: flex;
}
.slide {
flex: 0 0 50%;
contain: paint;
}
img {
width: 300px;
height: 250px;
}
</style>
<div class="carousel">
<div class="scroller">
<div class="slides">
<div class="slide">
<img id="image" src="/images/green-256x256.png">
</div>
</div>
</div>
</div>