Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / loader / resources / frame-creation-removal-iframe.html
blob6e1da1fc03408ae9b81e6abbf9ed55458c08ced9
1 <html>
2 <head>
3 <script>
4 function loaded()
6 var theFrame = parent.document.getElementById('lbIframe');
7 if (theFrame)
8 parent.document.body.removeChild(theFrame);
10 var objIframe = parent.document.createElement("iframe");
11 objIframe.setAttribute('id','lbIframe');
12 parent.document.body.appendChild(objIframe);
15 </script>
16 </head>
17 <body onload="loaded();">
18 </body>
19 </html>