Upstream version 9.37.197.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css3-text / css3-text-align-last / text-align-last.css
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 }