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

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

Issue 19471004: Rendering the property, text-align-last. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 3rd patch for review Created 7 years, 1 month 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 .testDiv {
2 width: 150px;
3 border: 1px solid #000000;
4 font-family: "Courier New", Courier, monospace;
Julien - ping for review 2013/10/30 20:49:39 While this font list will work, why don't you just
dw.im 2013/10/31 02:09:06 Could be enough.
5 font-size: 12px;
Julien - ping for review 2013/10/30 20:49:39 Why 12px here? Even though, we can't make assumpti
dw.im 2013/10/31 02:09:06 Then, how about using ttf file in webkit so that w
6 }
7
8 .testP {
9 border: 0;
10 margin: 0;
11 padding: 0;
12 }
13
14 .alignStart {
15 text-align: start;
16 }
17
18 .alignEnd {
19 text-align: end;
20 }
21
22 .alignRight {
23 text-align: right;
24 }
25
26 .alignLeft {
27 text-align: left;
28 }
29
30 .alignCenter {
31 text-align: center;
32 }
33
34 .alignLastAuto {
35 text-align-last: auto;
36 }
37
38 .alignLastStart {
39 text-align-last: start;
40 }
41
42 .alignLastEnd {
43 text-align-last: end;
44 }
45
46 .alignLastRight {
47 text-align-last: right;
48 }
49
50 .alignLastLeft {
51 text-align-last: left;
52 }
53
54 .alignLastCenter {
55 text-align-last: center;
56 }
57
58 .alignLastJustify {
59 text-align-last: justify;
60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698