Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / webexposed / nonstable-css-properties-expected.txt
1 Test getting and setting nonstable css properties to non-default values
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
6 el.style.setProperty('-webkit-shape-margin', '10px')
7 el.style.getPropertyValue('-webkit-shape-margin') is 10px
8 getComputedStyle(el).getPropertyValue('-webkit-shape-margin') is 10px
9
10 el.style.setProperty('-webkit-shape-outside', 'circle(10px at 10px 10px)')
11 el.style.getPropertyValue('-webkit-shape-outside') is circle(10px at 10px 10px)
12 getComputedStyle(el).getPropertyValue('-webkit-shape-outside') is circle(10px at 10px 10px)
13
14 el.style.setProperty('-webkit-wrap-flow', 'both')
15 el.style.getPropertyValue('-webkit-wrap-flow') is both
16 getComputedStyle(el).getPropertyValue('-webkit-wrap-flow') is both
17
18 el.style.setProperty('-webkit-wrap-through', 'none')
19 el.style.getPropertyValue('-webkit-wrap-through') is none
20 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is none
21
22 el.style.setProperty('grid-auto-columns', 'auto')
23 el.style.getPropertyValue('grid-auto-columns') is auto
24 getComputedStyle(el).getPropertyValue('grid-auto-columns') is auto
25
26 el.style.setProperty('grid-auto-rows', 'auto')
27 el.style.getPropertyValue('grid-auto-rows') is auto
28 getComputedStyle(el).getPropertyValue('grid-auto-rows') is auto
29
30 el.style.setProperty('grid-template-columns', 'min-content')
31 el.style.getPropertyValue('grid-template-columns') is min-content
32 getComputedStyle(el).getPropertyValue('grid-template-columns') is min-content
33
34 el.style.setProperty('grid-template-rows', 'max-content')
35 el.style.getPropertyValue('grid-template-rows') is max-content
36 getComputedStyle(el).getPropertyValue('grid-template-rows') is max-content
37
38 el.style.setProperty('grid-column-start', 'auto')
39 el.style.getPropertyValue('grid-column-start') is auto
40 getComputedStyle(el).getPropertyValue('grid-column-start') is auto
41
42 el.style.setProperty('grid-column-end', '2')
43 el.style.getPropertyValue('grid-column-end') is 2
44 getComputedStyle(el).getPropertyValue('grid-column-end') is 2
45
46 el.style.setProperty('grid-row-start', '1')
47 el.style.getPropertyValue('grid-row-start') is 1
48 getComputedStyle(el).getPropertyValue('grid-row-start') is 1
49
50 el.style.setProperty('grid-column', 'auto')
51 el.style.getPropertyValue('grid-column') is auto auto
52 getComputedStyle(el).getPropertyValue('grid-column') is auto / auto
53
54 el.style.setProperty('grid-row', '1')
55 el.style.getPropertyValue('grid-row') is 1 auto
56 getComputedStyle(el).getPropertyValue('grid-row') is 1 / auto
57
58 el.style.setProperty('grid-area', '2')
59 el.style.getPropertyValue('grid-area') is 2 auto auto auto
60 getComputedStyle(el).getPropertyValue('grid-area') is 2 / auto / auto / auto
61
62 el.style.setProperty('grid-auto-flow', 'column')
63 el.style.getPropertyValue('grid-auto-flow') is column
64 getComputedStyle(el).getPropertyValue('grid-auto-flow') is column
65
66 el.style.setProperty('grid-template-areas', '"test"')
67 el.style.getPropertyValue('grid-template-areas') is "test"
68 getComputedStyle(el).getPropertyValue('grid-template-areas') is "test"
69
70 el.style.setProperty('text-align-last', 'start')
71 el.style.getPropertyValue('text-align-last') is start
72 getComputedStyle(el).getPropertyValue('text-align-last') is start
73
74 el.style.setProperty('text-justify', 'distribute')
75 el.style.getPropertyValue('text-justify') is distribute
76 getComputedStyle(el).getPropertyValue('text-justify') is distribute
77
78 PASS successfullyParsed is true
79
80 TEST COMPLETE
81