summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/rotateY-180deg-with-overflow-scroll.html
blob: 195481d785bc09b3d436d545686e2802e85d0141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>