Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / first-letter-in-nested-before-table.html
blob3c300abb98f0e6ecfa67ab71d138827a1af70266
1 <!DOCTYPE html>
2 <!-- No text in black, B and F should be blue. -->
3 <html>
4 <body style="font-family: Ahem; font-size: 50px; -webkit-font-smoothing: none;">
5 <style>
6 .test1:before {
7 display: table;
8 content: "AB";
10 .test2:after {
11 display: table;
12 content: "EF";
14 .test1:first-letter { color: green; }
15 .test2:first-letter { color: green; }
16 </style>
17 <div class="test1">C</div>
18 <div class="test2">D</div>
19 <div class="test2"></div>
20 <script>
21 document.body.offsetTop;
22 document.body.style.color = "blue";
23 </script>
24 </html>