blob: 66002a5c0d4a55f6cad7ebcee1bfaab77a00cd06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<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="time" value="12:34" class="after"></li>
<li><input type="time" value="12:34" class="before"></li>
<li><input type="time" value="12:34" class="first-letter"></li>
</ul>
</body>
<script>
if (window.testRunner) {
testRunner.dumpAsTextWithPixelResults();
}
</script>
</html>
|