[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / frames / subframe-load-crash-main.html
1 <html>
2 <object data="resources/subframe-load-crash.svg" id="root" onload="runTest()"></object>
3 <script>
4 if (window.layoutTestController) {
5     layoutTestController.dumpAsText();
6     layoutTestController.waitUntilDone();
7 }
8 function runTest() {
9     root = document.getElementById('root').contentDocument;
10     root.addEventListener('load', function() { document.open(); document.write("PASS"); document.close(); }, 1);
11     setTimeout(function() {
12         root.getElementById('test').appendChild(document.createElement('iframe'));
13         if (window.layoutTestController)
14             layoutTestController.notifyDone();      
15     }, 0);
16 }
17 </script>
18 </html>