Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea / textarea-placeholder-scroll.html
blob3f7a7508c2f01e5a3931b3b1ad68ae3379533a15
1 <!DOCTYPE html>
2 <style>
3 textarea {
4 line-height: 20px;
5 height: 20px;
7 </style>
8 <p>Test passes if you can see "Pass" in textarea.</p>
9 <textarea placeholder="A long placeholder that gets hidden should make the textarea non-scrollable.">Pass</textarea>
10 <script>
11 var textarea = document.querySelector("textarea");
12 textarea.scrollTop = textarea.scrollHeight;
13 </script>