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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-expected.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: Combining the two ref tests as one ref test 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 When text-align is justify, the last line would be affected by the value of text -align-last.<br/>
16 This test checks that text-align-last property works properly.<br/>
17 </div>
18
19 <div class='testDiv' style='text-align:start'>start last</div>
20
21 <div class='testDiv' style='text-align:end'>end last</div>
22
23 <div class='testDiv' style='text-align:left'>left last</div>
24
25 <div class='testDiv' style='text-align:right'>right last</div>
26
27 <div class='testDiv' style='text-align:center'>center last</div>
28
29 <div class='testDiv' style='text-align:justify'>justify&nbsp; last</div>
30
31 <div class='testDiv' style='text-align:start'>start end</div>
32
33 <div class='testDiv' style='text-align:end'>end start</div>
34
35 <div class='testDiv' style='text-align:left'>left right</div>
36
37 <div class='testDiv' style='text-align:right'>right left</div>
38
39 <div class='testDiv' style='text-align:center'>center left</div>
40 </body>
41 </html>
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698