Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / text-overflow-input-focus-value.html
blob67070aee5cacfa0b0655f92a225dba0333d20d5c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>text-overflow</title>
5 <style>
6 input {
7 text-overflow: ellipsis;
9 </style>
10 </head>
11 <body>
12 <p>This test makes sure that the ellipsis disappears on the value when a text input is focused.</p>
13 <input type="text" value="Lorem ipsum dolor sit amet, consectetur adipiscing elit" />
14 <script>
15 document.querySelector('input').focus();
16 </script>
17 </body>
18 </html>