[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / frames / iframe-option-crash.xhtml
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3
4 <script>
5 function test()
6 {
7     if (window.layoutTestController)
8         layoutTestController.waitUntilDone();
9
10     var frame = document.getElementsByTagName("iframe")[0];
11     var body = document.getElementById("body");
12     body.appendChild(document.getElementById("option"));
13     body.appendChild(frame);
14
15     document.getElementById("result").appendChild(document.createTextNode("If no crash while painting, the test passed (requires pixel test mode)."));
16
17     if (window.layoutTestController)
18         layoutTestController.notifyDone();
19 }
20 </script>
21
22 </head>
23
24 <body id="body" onload="test()">
25       <div id="result"></div>
26       <iframe src="javascript:55"/>
27       <option id="option"><iframe src="data:text/html,11"/></option>
28 </body>
29
30 </html>