Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / geometry / assert-layout-not-done.html
blobada5fad95dadcc305e1623d226aebcf4b4c7b566
1 <!doctype html>
2 <html>
3 <style>
4 .container {
5 position: relative;
6 z-index: 0;
7 top: 123px; /* easy to detect values */
8 left: 123px; /* easy to detect values */
10 #child {
11 width: 100px;
12 height: 100px;
13 background-color: gray;
14 transform: translateZ(0px);
16 </style>
17 <script>
18 if (window.testRunner)
19 testRunner.dumpAsText();
20 </script>
21 <body>
22 <!-- This test passes if there's no ASSERT in debug mode. There should be a gray rectangle on screen. -->
23 <div class="container">
24 <div id="child"></div>
25 </div>
26 </body>
27 </html>