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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line-expected.html

Issue 224723023: Implements hanging property for text-indent from CSS3 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update description Created 6 years, 8 months 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>[css3-text] text-indent</title>
4 <style>
5 div { width:80px; font: 10px Ahem; background-color:lightgray; }
6 .normal { text-indent: 4em; }
7 .indent { color: blue; }
8 .eachline { padding-left:4em; }
9 </style>
10 </head
11 <body>
12 <div class="normal">
13 <span class="indent">xxxx</span><br>xxxx<br>xxxx
14 </div>
15 <br>
16 <div class="normal">
17 <span class="indent">xxxx</span> xxxx xxxx
18 </div>
19 <br>
20 <div class="normal">
21 <span class="indent">xxxx</span><br><span class="indent eachline">xxxx</span><br ><span class="indent eachline">xxxx</span>
22 </div>
23 <br>
24 <div class="normal">
25 <span class="indent">xxxx</span> xxxx<br><span class="indent eachline">xxxx</spa n>
26 </div>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698