OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style type="text/css"> | 3 <style type="text/css"> |
4 .after:after { content: "[after]"; } | 4 .after:after { content: "[after]"; } |
5 .before:before { content: "[before]"; } | 5 .before:before { content: "[before]"; } |
6 .first-letter:first-letter { color: green; font-size: 200%; } | 6 .first-letter:first-letter { color: green; font-size: 200%; } |
7 </style> | 7 </style> |
8 </head> | 8 </head> |
9 <body> | 9 <body> |
10 <ul> | 10 <ul> |
11 <li><input type="month" value="1982-11" class="after"></li> | 11 <li><input type="month" value="1982-11" class="after"></li> |
12 <li><input type="month" value="1982-11" class="before"></li> | 12 <li><input type="month" value="1982-11" class="before"></li> |
13 <li><input type="month" value="1982-11" class="first-letter"></li> | 13 <li><input type="month" value="1982-11" class="first-letter"></li> |
14 </ul> | 14 </ul> |
15 </body> | 15 </body> |
16 <script> | 16 <script> |
17 if (window.testRunner) | 17 if (window.testRunner) |
18 testRunner.dumpAsText(true); | 18 testRunner.dumpAsTextWithPixelResults(); |
19 </script> | 19 </script> |
20 </html> | 20 </html> |
OLD | NEW |