Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / iframes / resizer.html
blob3611c084f30c9bc7c1e440795ff318aebe601749
1 <!DOCTYPE html>
2 <style>
3 .container {
4 transform: translateZ(0);
5 resize: both;
7 </style>
8 <script>
9 function test() {
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 document.getElementById('layers').innerHTML = window.internals.layerTreeAsText(document);
15 </script>
16 <!-- There should be a layer for the iframe's scroll corner alongside the iframe's content's layer tree -->
17 <body onload="test()">
18 <iframe class="container" src="resources/composited-subframe.html"></iframe>
19 <pre id="layers">Layer tree appears here in DRT.</pre>