Handle keypad while WebPage sets the focus automatically
[framework/web/webkit-efl.git] / ManualTests / chromium / popup-menu-crash.html
1 <body id="body">\r
2 This is a test for https://bugs.webkit.org/show_bug.cgi?id=64295. Chromium sometimes crashes in a mouse event on an HTMLSelectElement if the event handler removes the element from the DOM.\r
3 This test is manual because it requires a real select popup menu, which DRT doesn't provide.<br>\r
4 To run, click on the select below, then select "Click me!" on the dropdown menu. We pass if the HTMLSelectElement disappears and we don't crash.\r
5 <script>\r
6 function handleClick(e) {\r
7     if (e.target.selectedIndex != 1)\r
8         return;\r
9 \r
10     document.getElementById("body").removeChild(document.getElementById("formDiv"));\r
11     var xhr = new XMLHttpRequest();\r
12     xhr.open('GET', '', true);\r
13     xhr.send(null);\r
14 }\r
15 </script>\r
16 <div id="formDiv">\r
17 <form>\r
18 <select onmouseup="handleClick(event);">\r
19 <option></option>\r
20 <option>Click me!</option>\r
21 </select>\r
22 </form>\r
23 </div>\r
24 </body>\r