Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / visibility / hidden-iframe.html
blobf8bed66738307ee99830f912712998c9eca7a53d
1 <html>
2 <head>
3 <style>
4 iframe {
5 visibility: hidden;
6 position: absolute;
8 </style>
9 <script>
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.waitUntilDone();
15 // Called from subframe.
16 function testDone()
18 // This timeout is necessary to detect the hang.
19 window.setTimeout(function() {
20 document.getElementById('results').innerText = 'PASS: test did not hang.';
21 if (window.testRunner)
22 testRunner.notifyDone();
23 }, 0);
25 </script>
26 </head>
27 <body>
28 <p id="results">This test should not hang.</p>
29 <iframe src="../iframes/resources/enter-compositing-subframe.html"></iframe>
30 </body>
31 </html>