Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / frames / inline-object-inside-frameset.html
1 <html><head>
2
3 <script>
4 function runTest() {
5     var dcont = document.getElementById("dcont");
6
7     var e = document.createElement('frameset');
8     var span = document.createElement('span');
9     e.appendChild(span);
10     dcont.appendChild(e);
11 }
12
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>
18
19 </body></html>