Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea-placeholder-layout-view.html
blob79d9b962fb7522a7d24dc1d82b78bddebae2dc2f
1 <!DOCTYPE html>
2 <head>
3 <style>
4 body {
5 margin: 0;
6 padding: 0;
8 #input:focus {
9 width: 100%;
11 </style>
12 </head>
13 <body id="body">
14 <p> https://bugs.webkit.org/show_bug.cgi?id=109020: An input element that grows to 100% width will create scrollbars, and these should go away when it loses focus. </p>
15 <textarea id="input" placeholder="placeholder"></textarea>
16 <textarea id="input2"></textarea>
17 <script>
18 document.getElementById('input').focus();
19 document.getElementById('input2').focus();
20 </script>
21 </body>