Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / input-placeholder-paint-order-2-expected.html
blob0c310b3d764e8380f7a4ae89eae4c2ed769c2d19
1 <!DOCTYPE html>
2 <body>
3 <style>
4 input {
5 color: lime;
6 text-indent: 1px;
7 zoom: 8;
10 input::-webkit-input-placeholder {
11 text-indent: -1px;
12 font-weight: bold;
13 color: red;
15 </style>
16 <p>The green caret in the following text box should painted over the red placeholder text.</p>
17 <input placeholder="Placeholder">
18 <script>
19 document.querySelector('input').focus();
20 </script>
21 </body>