[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / inspector / styles / styles-formatting-expected.txt
1 Tests that InspectorCSSAgent formats the CSS style text based on the CSS model modifications.
2
3 Formatted
4 Unformatted
5
6 Running: initFormattedStyle
7
8 Running: testFormattedInsertStart
9 raw cssText:
10
11     firstProperty: firstValue;
12     property1: value1;
13     property2: value2;
14     property3: value3;
15 }
16
17 Running: testFormattedRemoveStart
18 raw cssText:
19
20     property1: value1;
21     property2: value2;
22     property3: value3;
23 }
24
25 Running: testFormattedInsertMiddle
26 raw cssText:
27
28     property1: value1;
29     middleProperty: middleValue;
30     property2: value2;
31     property3: value3;
32 }
33
34 Running: testFormattedRemoveMiddle
35 raw cssText:
36
37     property1: value1;
38     property2: value2;
39     property3: value3;
40 }
41
42 Running: testFormattedInsertEnd
43 raw cssText:
44
45     property1: value1;
46     property2: value2;
47     property3: value3;
48     endProperty: endValue;
49 }
50
51 Running: testFormattedRemoveEnd
52 raw cssText:
53
54     property1: value1;
55     property2: value2;
56     property3: value3;
57 }
58
59 Running: testFormattedDisableStart
60 raw cssText:
61
62     property2: value2;
63     property3: value3;
64 }
65
66 Running: testFormattedDisableEnd
67 raw cssText:
68
69     property2: value2;
70 }
71
72 Running: testFormattedDisableMiddle
73 raw cssText:
74
75 }
76
77 Running: testFormattedInsert1
78 raw cssText:
79
80     propA: valA;
81 }
82
83 Running: testFormattedInsert2
84 raw cssText:
85
86     propA: valA;
87     propB: valB;
88 }
89
90 Running: testFormattedInsert3
91 raw cssText:
92
93     propA: valA;
94     propB: valB;
95     propC: valC;
96 }
97
98 Running: testFormattedEnableStart
99 raw cssText:
100
101     propA: valA;
102     property1: value1;
103     propB: valB;
104     propC: valC;
105 }
106
107 Running: testFormattedEnableEnd
108 raw cssText:
109
110     propA: valA;
111     property1: value1;
112     propB: valB;
113     property3: value3;
114     propC: valC;
115 }
116
117 Running: testFormattedEnableMiddle
118 raw cssText:
119
120     propA: valA;
121     property1: value1;
122     propB: valB;
123     property2: value2;
124     property3: value3;
125     propC: valC;
126 }
127
128 Running: initUnformattedStyle
129
130 Running: testUnformattedInsertStart
131 raw cssText:
132 {firstProperty: firstValue;property1:value1;property2:value2;property3:value3;}
133
134 Running: testUnformattedRemoveStart
135 raw cssText:
136 {property1:value1;property2:value2;property3:value3;}
137
138 Running: testUnformattedInsertMiddle
139 raw cssText:
140 {property1:value1;middleProperty: middleValue;property2:value2;property3:value3;}
141
142 Running: testUnformattedRemoveMiddle
143 raw cssText:
144 {property1:value1;property2:value2;property3:value3;}
145
146 Running: testUnformattedInsertEnd
147 raw cssText:
148 {property1:value1;property2:value2;property3:value3;endProperty: endValue;}
149
150 Running: testUnformattedRemoveEnd
151 raw cssText:
152 {property1:value1;property2:value2;property3:value3;}
153
154 Running: testUnformattedDisableStart
155 raw cssText:
156 {property2:value2;property3:value3;}
157
158 Running: testUnformattedDisableEnd
159 raw cssText:
160 {property2:value2;}
161
162 Running: testUnformattedDisableMiddle
163 raw cssText:
164 {}
165
166 Running: testUnformattedEnableStart
167 raw cssText:
168 {property1:value1;}
169
170 Running: testUnformattedEnableEnd
171 raw cssText:
172 {property1:value1;property3:value3;}
173
174 Running: testUnformattedEnableMiddle
175 raw cssText:
176 {property1:value1;property2:value2;property3:value3;}
177