mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +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
17 lines
259 B
HTML
17 lines
259 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.container {
|
|
transform: rotateY(180deg);
|
|
width: 100px;
|
|
height: 100px;
|
|
overflow: scroll;
|
|
background: green;
|
|
}
|
|
.content {
|
|
width: 300px;
|
|
height: 300px;
|
|
}
|
|
</style>
|
|
<div class="container">
|
|
<div class="content"></div>
|
|
</div>
|