Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / dont-squash-into-iframes.html
blobab8af26125eb9b03bfc84dbc6c1ba078bcf10286
1 <iframe style="transform: translateZ(0); position: absolute; top: 0px; left: 0px; height: 100px; width: 100px; background: lightblue"></iframe>
3 <div style="position: absolute; top: 50px; left: 50px; width: 200px; height: 200px; background: lightgray;"></div>
4 <script src="../../resources/run-after-layout-and-paint.js"></script>
5 <script>
6 // Tests that squashing into iframes is not allowed.
7 if (testRunner) {
8 testRunner.dumpAsText();
9 testRunner.waitUntilDone();
10 runAfterLayoutAndPaint(function() {
11 testRunner.setCustomTextOutput(window.internals.layerTreeAsText(document));
12 testRunner.notifyDone();
13 });
16 </script>