[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / ManualTests / select-delete-item.html
1 <html>\r
2 <head>\r
3     <title>RenderMenuList::itemStyle Select Element Crash</title>\r
4     <script>\r
5         function removeItem() {\r
6             var select = document.getElementById("dropDown");\r
7             select.removeChild(document.getElementsByTagName("option")[2]);\r
8         }\r
9     </script>\r
10 </head>\r
11 <body>\r
12     <select id="dropDown" onfocus="setTimeout('removeItem();', 2000);">\r
13         <option>Option 1</option>\r
14         <option>Option 2</option>\r
15         <option>Option 3</option>\r
16     </select>\r
17     <p>This is a test for bug <a href="http://webkit.org/b/34182">34182</a> Crash in WebKit!WebCore::RenderMenuList::itemStyle.\r
18     Once the select gets focus, in 2 seconds it will delete an item. This test passes\r
19     if you have the select open when it deletes an item, and doesn't crash.</p>\r
20 </body>\r
21 </html>\r