Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / geometry / tall-page-composited.html
blob1355fcde3e046e9ffd127b3e13231dc8334f623e
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 body {
7 height: 2049px; /* Cause view-size limits to kick in on Leopard. */
10 .box {
11 position: absolute;
12 width: 100px;
13 height: 100px;
16 .test {
17 transform: translateZ(0);
18 background-color: green;
21 .indicator {
22 background-color: red;
25 </style>
26 </head>
27 <body>
29 <!-- In the pixel results you should see no red. -->
30 <div class="indicator box"></div>
31 <div class="test box"></div>
33 </body>
34 </html>