Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(749)

Side by Side Diff: LayoutTests/fast/css/first-letter.html

Issue 672953002: Convert first letter into a pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .before:before { content: 'Carpe '; }
4 .after:after { content: 'Foo '; }
5 .target:first-letter { color: green; font-size: 2em; }
6 span { text-decoration: underline; }
7 #a { color: red; }
8 #b { color: green; }
9 #a::first-letter { text-decoration: underline; font-size: 2em; }
10 </style>
11 This tests various first letter combinations. In each case the first letter
12 should be larger and green.
13 <div class="target">Lorem</div>
14 <div class="target"><span>Ipsum</span></div>
15 <div class="target"><span class="before">Diem</span></div>
16 <div class="target"><span class="after"></span>bar</div>
17 <div id="a">
18 <div id="b">First letter should be green and underlined.</div>
19 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698