Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / innerHTML / innerHTML-iframe.html
blobb515db6c43fae93aa444409c260f57d4a66dcb79
1 <body onload='runTest()'>
2 <script>
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
8 function runTest() {
9 document.getElementById("x").innerHTML = "";
10 setTimeout(function(){
11 document.body.innerHTML = "<b>PASS:</b> body and iframe cleared without crashing.";
12 testRunner.notifyDone();
13 }, 0);
15 </script>
16 <div id="x">
17 <iframe src="does-not-exist">
18 </div>
19 </body>