Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / iframes / nested-composited-iframe.html
blob07c1baefe8e88a4863e388b6e51049e57d2d8157
1 <html>
2 <head>
3 <style>
4 body {
5 overflow: hidden;
6 background-color: green;
8 iframe {
9 position: absolute;
10 width: 400px;
11 height: 400px;
12 left: 0px;
13 top: 200px;
14 border: 0px;
16 </style>
17 <script>
18 function runTest() {
19 var iframe = document.getElementsByTagName("iframe")[0];
20 iframe.contentWindow.scrollTo(0, 250);
22 if (window.testRunner)
23 testRunner.dumpAsTextWithPixelResults();
24 window.addEventListener("load", runTest, false);
25 </script>
26 </head>
27 <body>
28 <iframe src="resources/has-composited-iframe-child.html"></iframe>
29 </body>
30 </html>