Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / 009.html
blob72567123af48280d206b9c40582395f9738424ad
1 <html>
2 <head>
3 <style>
4 .one { color: black }
5 .one::first-line { color:green }
7 ul::first-line { color:green }
9 .three::first-letter { font-size:300%; }
10 .three { color: red; }
11 .three > span { color: green; }
13 .four { display: inline-block; color: red; }
14 .four::first-line { color:green; }
15 </style>
16 </head>
17 <body>
18 <p class="one">All of this <span>text should be</span> green.</p>
20 <ul><li>All of this text should be green. The bullet should be black.</li></ul>
22 <div class="three"><span>All of this text should be green, including the big "A" first-letter.</span></div>
24 <p></p>
26 <div><div class="four">This text should be green.</div></div>