Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / css / css-set-style-text-expected.txt
bloba38b2e616a6110895f63ecb27816fdb051350b78
1 The test verifies functionality of protocol method CSS.setStyleText.
3 ==== Initial style sheet text ====
4 #test {
5     box-sizing: border-box;
8 #test {
9     /* resetting some properties */
10     line-height: 1;
11     font-family: "Arial";
12     color: blue;
13     display: flex; /* flex FTW! */
16 @media (min-width: 1px) {
17     #test {
18         font-size: 200%;
19     }
21     #test {
22     }
27 Running test: testBasicSetStyle
28 ==== Style sheet text ====
29 #test {
30     content: 'EDITED';
33 #test {
34     /* resetting some properties */
35     line-height: 1;
36     font-family: "Arial";
37     color: blue;
38     display: flex; /* flex FTW! */
41 @media (min-width: 1px) {
42     #test {
43         font-size: 200%;
44     }
46     #test {
47     }
51 Dumping matched rules: 
52 *#test* {    regular
53     content: 'EDITED';
55 *#test* {    regular
56     line-height: 1;
57     font-family: "Arial";
58     color: blue;
59     display: flex;
61 @media (min-width: 1px)
62     *#test* {    regular
63         font-size: 200%;
64     }
65 @media (min-width: 1px)
66     *#test* {    regular
67     }
68 Dumping inherited rules: 
70 Running test: testSetStyleTwice
71 ==== Style sheet text ====
72 #test {
73     color: green;
74     padding: 0 4px;
75     cursor: pointer
78 #test {
79     /* resetting some properties */
80     line-height: 1;
81     font-family: "Arial";
82     color: blue;
83     display: flex; /* flex FTW! */
86 @media (min-width: 1px) {
87     #test {
88         font-size: 200%;
89     }
91     #test {
92     }
96 Dumping matched rules: 
97 *#test* {    regular
98     color: green;
99     padding: 0 4px;
100     cursor: pointer;
101     padding-top: 0px;
102     padding-right: 4px;
103     padding-bottom: 0px;
104     padding-left: 4px;
106 *#test* {    regular
107     line-height: 1;
108     font-family: "Arial";
109     color: blue;
110     display: flex;
112 @media (min-width: 1px)
113     *#test* {    regular
114         font-size: 200%;
115     }
116 @media (min-width: 1px)
117     *#test* {    regular
118     }
119 Dumping inherited rules: 
120 ==== Style sheet text ====
121 #test {
122     color: green;
123     padding: 0 6px;
124     cursor: pointer
127 #test {
128     /* resetting some properties */
129     line-height: 1;
130     font-family: "Arial";
131     color: blue;
132     display: flex; /* flex FTW! */
135 @media (min-width: 1px) {
136     #test {
137         font-size: 200%;
138     }
140     #test {
141     }
145 Dumping matched rules: 
146 *#test* {    regular
147     color: green;
148     padding: 0 6px;
149     cursor: pointer;
150     padding-top: 0px;
151     padding-right: 6px;
152     padding-bottom: 0px;
153     padding-left: 6px;
155 *#test* {    regular
156     line-height: 1;
157     font-family: "Arial";
158     color: blue;
159     display: flex;
161 @media (min-width: 1px)
162     *#test* {    regular
163         font-size: 200%;
164     }
165 @media (min-width: 1px)
166     *#test* {    regular
167     }
168 Dumping inherited rules: 
169 ==== Style sheet text ====
170 #test {
171     color: green;
172     padding: 0 8px;
173     cursor: pointer
176 #test {
177     /* resetting some properties */
178     line-height: 1;
179     font-family: "Arial";
180     color: blue;
181     display: flex; /* flex FTW! */
184 @media (min-width: 1px) {
185     #test {
186         font-size: 200%;
187     }
189     #test {
190     }
194 Dumping matched rules: 
195 *#test* {    regular
196     color: green;
197     padding: 0 8px;
198     cursor: pointer;
199     padding-top: 0px;
200     padding-right: 8px;
201     padding-bottom: 0px;
202     padding-left: 8px;
204 *#test* {    regular
205     line-height: 1;
206     font-family: "Arial";
207     color: blue;
208     display: flex;
210 @media (min-width: 1px)
211     *#test* {    regular
212         font-size: 200%;
213     }
214 @media (min-width: 1px)
215     *#test* {    regular
216     }
217 Dumping inherited rules: 
219 Running test: testSetStylePoorContent
220 Expected protocol error: SyntaxError Style text is not valid.
221 Dumping matched rules: 
222 *#test* {    regular
223     box-sizing: border-box;
225 *#test* {    regular
226     line-height: 1;
227     font-family: "Arial";
228     color: blue;
229     display: flex;
231 @media (min-width: 1px)
232     *#test* {    regular
233         font-size: 200%;
234     }
235 @media (min-width: 1px)
236     *#test* {    regular
237     }
238 Dumping inherited rules: 
240 Running test: testSetStyleInMedia
241 ==== Style sheet text ====
242 #test {
243     box-sizing: border-box;
246 #test {
247     /* resetting some properties */
248     line-height: 1;
249     font-family: "Arial";
250     color: blue;
251     display: flex; /* flex FTW! */
254 @media (min-width: 1px) {
255     #test {
256         content: 'EDITED';
257         color: red;
258         /** foo */
259     }
261     #test {
262     }
266 Dumping matched rules: 
267 *#test* {    regular
268     box-sizing: border-box;
270 *#test* {    regular
271     line-height: 1;
272     font-family: "Arial";
273     color: blue;
274     display: flex;
276 @media (min-width: 1px)
277     *#test* {    regular
278         content: 'EDITED';
279         color: red;
280     }
281 @media (min-width: 1px)
282     *#test* {    regular
283     }
284 Dumping inherited rules: 
286 Running test: testDeleteStyleBody
287 ==== Style sheet text ====
288 #test {
289     box-sizing: border-box;
292 #test {
293     /* resetting some properties */
294     line-height: 1;
295     font-family: "Arial";
296     color: blue;
297     display: flex; /* flex FTW! */
300 @media (min-width: 1px) {
301     #test {}
303     #test {
304     }
308 Dumping matched rules: 
309 *#test* {    regular
310     box-sizing: border-box;
312 *#test* {    regular
313     line-height: 1;
314     font-family: "Arial";
315     color: blue;
316     display: flex;
318 @media (min-width: 1px)
319     *#test* {    regular
320     }
321 @media (min-width: 1px)
322     *#test* {    regular
323     }
324 Dumping inherited rules: 
326 Running test: testSetStylePoorRange
327 Expected protocol error: Specified range is out of bounds
328 Dumping matched rules: 
329 *#test* {    regular
330     box-sizing: border-box;
332 *#test* {    regular
333     line-height: 1;
334     font-family: "Arial";
335     color: blue;
336     display: flex;
338 @media (min-width: 1px)
339     *#test* {    regular
340         font-size: 200%;
341     }
342 @media (min-width: 1px)
343     *#test* {    regular
344     }
345 Dumping inherited rules: 
347 Running test: testSetStyleOpenComment
348 Expected protocol error: SyntaxError Style text is not valid.
349 Dumping matched rules: 
350 *#test* {    regular
351     box-sizing: border-box;
353 *#test* {    regular
354     line-height: 1;
355     font-family: "Arial";
356     color: blue;
357     display: flex;
359 @media (min-width: 1px)
360     *#test* {    regular
361         font-size: 200%;
362     }
363 @media (min-width: 1px)
364     *#test* {    regular
365     }
366 Dumping inherited rules: 
368 Running test: testSetStyleOfRemovedRule
369 ERROR: NotFoundError Source range didn't match existing style source range