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

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 </style>
Julien - ping for review 2014/11/12 21:58:50 Let's add a description of what you're testing and
dsinclair 2014/11/13 17:55:36 Done.
8 <div class="target">Lorem</div>
9 <div class="target"><span>Ipsum</span></div>
10 <div class="target"><span class="before">Diem</span></div>
11 <div class="target"><span class="after"></span>bar</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698