Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / geometry / composited-html-size.html
blob30137ce0e12b7dbcd264d80baec3eac2af201bda
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css" media="screen">
6 body {
7 background-color: silver;
8 padding: 10px;
11 .container {
12 position: absolute;
13 height: 100px;
14 width: 100px;
15 margin: 10px;
16 left: 0;
17 top: 0;
18 z-index: -1;
19 background-color: blue;
22 .compositing {
23 transform: translateZ(0);
25 </style>
26 </head>
28 <body>
30 <!-- the body background should cover the entire viewport. No red should be visible in debug builds. -->
31 <div class="container">
32 <div class="compositing">
33 Compositing
34 </div>
35 </div>
37 </body>
38 </html>