Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 @font-face { | |
| 2 font-family: 'testFont'; | |
| 3 src: url(../../../resources/Ahem.ttf); | |
| 4 } | |
|
Julien - ping for review
2013/11/01 00:34:43
We don't really need that: font-family: Ahem shoul
| |
| 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 } | |
| OLD | NEW |