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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-with-text-align-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: 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 <link href="resources/text-align-last.css" rel="stylesheet" type="text/css">
5 </head>
6 <body>
7 <div>
8 text align is justify, and all of the values of text-align-last<br/>
9 This test checks that text-align-last property works properly.<br/>
10 </div>
11
12 <div dir='ltr' class='testDiv' style='text-align:justify; text-align-last:start' >LTR align : justify align-last : start</div>
13
14 <div dir='ltr' class='testDiv' style='text-align:justify; text-align-last:end'>L TR align : justify align-last : end</div>
15
16 <div dir='ltr' class='testDiv' style='text-align:justify; text-align-last:left'> LTR align : justify align-last : left</div>
17
18 <div dir='ltr' class='testDiv' style='text-align:justify; text-align-last:right' >LTR align : justify align-last : right</div>
19
20 <div dir='ltr' class='testDiv' style='text-align:justify; text-align-last:center '>LTR align : justify align-last : center</div>
21
22 <div dir='ltr' class='testDiv' style='text-align:justify; text-align-last:justif y'>LTR align : justify align-last : justify</div>
23 </body>
24 </html>
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698