Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / plugin-clip-subframe.html
blobf90049bd5ad5688f69b2da6f3091cea73e0569c2
1 <!doctype html>
2 <html>
3 <script>
4 function test() {
5 // Increase the size of the container so the iframe becomes visible.
6 document.getElementById("container").style.height = "400px";
7 document.getElementById("container").offsetWidth;
8 setTimeout(done, 10);
11 function done() {
12 if (testRunner) {
13 testRunner.dumpAsText();
14 testRunner.notifyDone();
18 function runTest() {
19 if (testRunner)
20 testRunner.waitUntilDone();
21 document.getElementById("container").offsetWidth;
22 setTimeout(test, 10);
24 </script>
25 <body onload="runTest()">
27 <div id = "container" style="overflow: hidden; width:100px; height:100px">
28 <iframe id='subframe' src='resources/plugin-clip-subframe-iframe.html' width=500 height=500 style="margin-top:200px"></iframe>
29 </div>
30 </body>
31 </html>