Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / dont-squash-into-videos.html
blob62e5bdd2687fb3c06771f4e8490dd37a17470135
1 <video style="transform: translateZ(0); position: absolute; top: 0px; left: 0px; height: 100px; width: 100px; background: lightblue"></video>
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 videos 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>