summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/week/week-appearance-pseudo-elements.html
blob: b5f464b3e693a1ed5a68b6a45b8835883140ecb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<style type="text/css">
.after:after { content: "[after]"; }
.before:before { content: "[before]"; }
.first-letter:first-letter { color: green; font-size: 200%; }
</style>
</head>
<body>
<ul>
    <li><input type="week" value="1982-W25" class="after"></li>
    <li><input type="week" value="1982-W25" class="before"></li>
    <li><input type="week" value="1982-W25" class="first-letter"></li>
</ul>
</body>
<script>
if (window.testRunner)
    testRunner.dumpAsTextWithPixelResults();
</script>
</html>