Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / input-placeholder-layout-view.html
blob95f9a505707c357a41df875489e0eff126997cc7
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 <input id="input" placeholder="placeholder">
16 <input id="input2">
17 <script>
18 document.getElementById('input').focus();
19 document.getElementById('input2').focus();
20 </script>
21 </body>