[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / 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     
11     dcont.appendChild(e);
12     
13     if (window.layoutTestController)
14         layoutTestController.display();
15 }
16
17 </script>
18 </head><body onload="runTest()">
19 <div>This tests that putting an inline element (such as a span) inside of an element doesn't cause an assertion failure.</div>
20 <div id="dcont">
21 </div>
22
23 </body></html>