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

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: 2nd patch for review Created 7 years, 2 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 .testDiv {
2 width:150px;
Julien - ping for review 2013/10/25 18:49:19 Nit: Space after the ':'.
dw.im 2013/10/28 02:56:14 Sure!
3 border:1px solid #000000;
4 font-size:14pt
Julien - ping for review 2013/10/25 18:49:19 This is a weird and slightly dangerous way to test
dw.im 2013/10/30 05:42:44 So, I change like below. font-family: "Courier Ne
5 }
6
7 .testP {
8 border:0;
9 margin:0;
10 padding:0;
11 }
12
13 .alignStart {
14 text-align:start;
15 }
16
17 .alignEnd {
18 text-align:end;
19 }
20
21 .alignRight {
22 text-align:right;
23 }
24
25 .alignLeft {
26 text-align:left;
27 }
28
29 .alignCenter {
30 text-align:center;
31 }
32
33 .alignLastAuto {
34 text-align-last:auto;
35 }
36
37 .alignLastStart {
38 text-align-last:start;
39 }
40
41 .alignLastEnd {
42 text-align-last:end;
43 }
44
45 .alignLastRight {
46 text-align-last:right;
47 }
48
49 .alignLastLeft {
50 text-align-last:left;
51 }
52
53 .alignLastCenter {
54 text-align-last:center;
55 }
56
57 .alignLastJustify {
58 text-align-last:justify;
59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698