Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea-placeholder-visibility-2.html
blob816ef2d7bc6c22228feb1503aac07b0cf237fd08
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 clear the value.</p>
7 <div>
8 <textarea id=i1 placeholder="Placeholder">Text</textarea>
9 <script>
10 var i1 = document.getElementById('i1');
11 i1.focus();
12 document.execCommand("InsertText", false, "Text");
13 i1.value = "";
14 </script>
15 </body>
16 </html>