Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css-generated-content / first-letter-in-nested-before-table.html
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";
9 }
10 .test2:after {
11     display: table;
12     content: "EF";
13 }
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>