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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.css

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
« no previous file with comments | « no previous file | LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 @font-face {
2 font-family: 'testFont';
3 src: url(../../../resources/Ahem.ttf);
4 }
5
6 .testDiv {
7 width: 150px;
8 border: 1px solid #000000;
9 font-family: testFont;
10 font-size: 7px;
11 }
12
13 .testP {
14 border: 0;
15 margin: 0;
16 padding: 0;
17 }
18
19 .alignStart {
20 text-align: start;
21 }
22
23 .alignEnd {
24 text-align: end;
25 }
26
27 .alignRight {
28 text-align: right;
29 }
30
31 .alignLeft {
32 text-align: left;
33 }
34
35 .alignCenter {
36 text-align: center;
37 }
38
39 .alignLastAuto {
40 text-align-last: auto;
41 }
42
43 .alignLastStart {
44 text-align-last: start;
45 }
46
47 .alignLastEnd {
48 text-align-last: end;
49 }
50
51 .alignLastRight {
52 text-align-last: right;
53 }
54
55 .alignLastLeft {
56 text-align-last: left;
57 }
58
59 .alignLastCenter {
60 text-align-last: center;
61 }
62
63 .alignLastJustify {
64 text-align-last: justify;
65 }
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698