blob: 3c300abb98f0e6ecfa67ab71d138827a1af70266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<!-- No text in black, B and F should be blue. -->
<html>
<body style="font-family: Ahem; font-size: 50px; -webkit-font-smoothing: none;">
<style>
.test1:before {
display: table;
content: "AB";
}
.test2:after {
display: table;
content: "EF";
}
.test1:first-letter { color: green; }
.test2:first-letter { color: green; }
</style>
<div class="test1">C</div>
<div class="test2">D</div>
<div class="test2"></div>
<script>
document.body.offsetTop;
document.body.style.color = "blue";
</script>
</html>
|