Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / columns / composited-in-paginated.html
blob87d9936120c9a271247c5a3e251973e2cd6ce012
1 <html style="overflow: -webkit-paged-x;">
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 function dumpLayers()
9 if (window.testRunner)
10 document.getElementById('layers').innerText = window.internals.layerTreeAsText(document);
12 window.addEventListener('load', dumpLayers, false);
13 </script>
14 <style>
15 .spacer {
16 height: 350px;
17 width: 100%;
18 margin: 10px;
19 background-color: silver;
22 .box {
23 height: 100px;
24 width: 100px;
25 margin: 10px;
26 background-color: blue;
28 .composited {
29 transform: translateZ(0);
31 </style>
32 </head>
33 <body>
35 <div class="spacer"></div>
36 <div class="spacer"></div>
37 <div class="composited box"></div>
38 <pre id="layers">Layer tree goes here in DRT</pre>
40 </body>
41 </html>