gecko-dev/testing/web-platform/tests/css/css-transforms/rotateY-180deg-with-overflow-scroll.html
Xianzhu Wang 266a9a6f4b Bug 1547553 [wpt PR 16425] - Add tests for crbug.com/363609 and crbug.com/954591, a=testonly
Automatic update from web-platform-tests
Add tests for crbug.com/363609 and crbug.com/954591

Bug: 363609, 954591
Change-Id: I522eaf916c9b2d7dbb3ba95a904e9b272d920902
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577058
Reviewed-by: Philip Rogers <pdr@chromium.org>
Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#652859}

--

wpt-commits: 96f589157b4a987e5bba54214584b6e40348f13b
wpt-pr: 16425
2019-06-05 10:29:47 +01:00

22 lines
593 B
HTML

<!DOCTYPE html>
<title>CSS Test (Transforms): rotateY(180deg) and overflow scroll</title>
<link rel="help" href="http://www.w3.org/TR/css-transforms-2">
<link rel="match" href="rotateY-180deg-with-overflow-scroll-ref.html">
<style>
.container {
transform: rotateY(180deg);
width: 100px;
height: 100px;
overflow: scroll;
}
.content {
width: 300px;
height: 300px;
}
</style>
<div class="container">
<div class="content" style="background: green"></div>
</div>
<div class="container" style="backface-visibility: hidden">
<div class="content" style="background: red"></div>
</div>