[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / select-empty-option-height.html
1 <html>
2 <head>
3     <title>Test for http://bugs.webkit.org/show_bug.cgi?id=11047</title>
4 </head>
5 <body>
6 <select id="t" style="-webkit-appearance: none;">
7     <option>This</option>
8     <option></option>
9 </select>
10 <script>
11     document.body.offsetTop;
12     document.getElementById("t").selectedIndex = 1;
13 </script>
14 </body>
15 </html>