Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / inline-object-inside-frameset.html
blobc238596b0b775d1126ef45b6c1759010b3ceb730
1 <html><head>
3 <script>
4 function runTest() {
5 var dcont = document.getElementById("dcont");
7 var e = document.createElement('frameset');
8 var span = document.createElement('span');
9 e.appendChild(span);
10 dcont.appendChild(e);
13 </script>
14 </head><body onload="runTest()" style="overflow:hidden;">
15 <div>This tests that putting an inline element (such as a span) inside of an element doesn't cause an assertion failure.</div>
16 <div id="dcont">
17 </div>
19 </body></html>