upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / input-placeholder-visibility-2.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.</p>
7 <div>
8 <input id=i1 placeholder="Placeholder">
9 <script>
10 var i1 = document.getElementById('i1');
11 i1.focus();
12 document.execCommand("InsertText", false, "Text");
13 </script>
14 </body>
15 </html>