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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-with-text-align-non-justify.html

Issue 59753002: text-align-last only affect to the last line when text-align is justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2 ref test cases Created 6 years, 6 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 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 .testDiv {
6 width: 208px;
7 border: 1px solid #000000;
8 font-family: Ahem, monospace;
9 font-size: 1em;
10 }
11 </style>
12 </head>
13 <body>
14 <div>
15 text-align is not justify, even though each line has value for text-align-last<b r>
16 This test checks that text-align-last property works properly.
17 </div>
18
19 <div class='testDiv' style='text-align:start; text-align-last:end'>start end</di v>
leviw_travelin_and_unemployed 2014/06/23 15:26:11 This test doesn't actually validate that this only
20
21 <div class='testDiv' style='text-align:end; text-align-last:start'>end start</di v>
22
23 <div class='testDiv' style='text-align:left; text-align-last:right'>left right</ div>
24
25 <div class='testDiv' style='text-align:right; text-align-last:left'>right left</ div>
26
27 <div class='testDiv' style='text-align:center; text-align-last:left'>center left </div>
28
29 </body>
30 </html>
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698