mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
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
22 lines
593 B
HTML
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>
|