Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / iframe-double-attach.html
blob2dac3c910c52cf2ced668ff6a0ac02d575819e66
1 <html>
2 <head>
3 <style>
4 /* a descendant rule makes us so sophisticated (and crash-prone) */
5 pre div { color: brown; }
6 </style>
7 <script>
8 function runTest()
10 if (window.testRunner)
11 testRunner.dumpAsText();
13 // first, make sure the target needs style recalc
14 target.style.backgroundColor = "white";
15 target.innerHTML = '<div><IFRAME></IFRAME><img></div>';
17 </script>
19 </head>
20 <body onload="runTest()">
21 <div id="target"></div>
22 <div>SUCCESS! Didn't crash</div>
23 </body>
24 </html>