Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / geometry / tall-page-composited.html
1 <!DOCTYPE html>
2
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. */
8     }
9     
10     .box {
11       position: absolute;
12       width: 100px;
13       height: 100px;
14     }
15     
16     .test {
17       transform: translateZ(0);
18       background-color: green;
19     }
20     
21     .indicator {
22       background-color: red;
23     }
24
25   </style>
26 </head>
27 <body>
28
29   <!-- In the pixel results you should see no red. -->
30   <div class="indicator box"></div>
31   <div class="test box"></div>
32
33 </body>
34 </html>