Chromium Code Reviews| Index: LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.css |
| diff --git a/LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.css b/LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..64c444e6c2e52e083dee7bd2ca6508f2aed23695 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css3-text/css3-text-align-last/text-align-last.css |
| @@ -0,0 +1,65 @@ |
| +@font-face { |
| + font-family: 'testFont'; |
| + src: url(../../../resources/Ahem.ttf); |
| +} |
|
Julien - ping for review
2013/11/01 00:34:43
We don't really need that: font-family: Ahem shoul
|
| + |
| +.testDiv { |
| + width: 150px; |
| + border: 1px solid #000000; |
| + font-family: testFont; |
| + font-size: 7px; |
| +} |
| + |
| +.testP { |
| + border: 0; |
| + margin: 0; |
| + padding: 0; |
| +} |
| + |
| +.alignStart { |
| + text-align: start; |
| +} |
| + |
| +.alignEnd { |
| + text-align: end; |
| +} |
| + |
| +.alignRight { |
| + text-align: right; |
| +} |
| + |
| +.alignLeft { |
| + text-align: left; |
| +} |
| + |
| +.alignCenter { |
| + text-align: center; |
| +} |
| + |
| +.alignLastAuto { |
| + text-align-last: auto; |
| +} |
| + |
| +.alignLastStart { |
| + text-align-last: start; |
| +} |
| + |
| +.alignLastEnd { |
| + text-align-last: end; |
| +} |
| + |
| +.alignLastRight { |
| + text-align-last: right; |
| +} |
| + |
| +.alignLastLeft { |
| + text-align-last: left; |
| +} |
| + |
| +.alignLastCenter { |
| + text-align-last: center; |
| +} |
| + |
| +.alignLastJustify { |
| + text-align-last: justify; |
| +} |