Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / month / month-appearance-pseudo-elements.html
blobd50aa4a680dc77d9e4ae668a26a6b1fc758df6d6
1 <html>
2 <head>
3 <style type="text/css">
4 .after:after { content: "[after]"; }
5 .before:before { content: "[before]"; }
6 .first-letter:first-letter { color: green; font-size: 200%; }
7 </style>
8 </head>
9 <body>
10 <ul>
11 <li><input type="month" value="1982-11" class="after"></li>
12 <li><input type="month" value="1982-11" class="before"></li>
13 <li><input type="month" value="1982-11" class="first-letter"></li>
14 </ul>
15 </body>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsTextWithPixelResults();
19 </script>
20 </html>