Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / resources / onload-remove-iframe-crash-2.html
blob345bb1fd04042c4421bf3739ac7157c52bd8a9b4
1 <html>
2 <head>
3 <title></title>
4 <script>
5 function done()
7 var f = document.getElementById("iframe");
8 f.parentNode.removeChild(f);
9 parent.frameLoaded();
11 </script>
12 </head>
13 <body>
14 <div>
15 <iframe id="iframe" onload="done()" src="onload-remove-iframe.html">
16 </iframe>
17 </div>
18 </body>
19 </html>