[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / textarea-placeholder-visibility-1.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 </head>
5 <body>
6 <p id="description">Focus field with a placeholder, then type, then delete all text.</p>
7 <div>
8 <textarea id=i1 placeholder="Placeholder"></textarea>
9 <script>
10 var i1 = document.getElementById('i1');
11 i1.focus();
12 document.execCommand("InsertText", false, "Text");
13 document.execCommand("Delete");
14 document.execCommand("Delete");
15 document.execCommand("Delete");
16 document.execCommand("Delete");
17 </script>
18 </body>
19 </html>