3 |
|
|
4 |
#data |
#data |
5 |
p { |
p { |
6 |
|
content: normal; |
7 |
|
} |
8 |
|
#cssom |
9 |
|
| <p> |
10 |
|
| content: normal |
11 |
|
#csstext |
12 |
|
p { |
13 |
|
content: normal; |
14 |
|
} |
15 |
|
|
16 |
|
#data |
17 |
|
p { |
18 |
|
content: normal "none"; |
19 |
|
} |
20 |
|
#errors |
21 |
|
;2;19;m;no property semicolon |
22 |
|
#cssom |
23 |
|
| <p> |
24 |
|
|
25 |
|
#data |
26 |
|
p { |
27 |
|
content: none; |
28 |
|
} |
29 |
|
#cssom |
30 |
|
| <p> |
31 |
|
| content: none |
32 |
|
#csstext |
33 |
|
p { |
34 |
|
content: none; |
35 |
|
} |
36 |
|
|
37 |
|
#data |
38 |
|
p { |
39 |
|
content: inherit; |
40 |
|
} |
41 |
|
#cssom |
42 |
|
| <p> |
43 |
|
| content: inherit |
44 |
|
#csstext |
45 |
|
p { |
46 |
|
content: inherit; |
47 |
|
} |
48 |
|
|
49 |
|
#data |
50 |
|
p { |
51 |
|
content: "a"; |
52 |
|
} |
53 |
|
#cssom |
54 |
|
| <p> |
55 |
|
| content: "a" |
56 |
|
#csstext |
57 |
|
p { |
58 |
|
content: "a"; |
59 |
|
} |
60 |
|
|
61 |
|
#data |
62 |
|
p { |
63 |
|
content: "a" "" "n"; |
64 |
|
} |
65 |
|
#cssom |
66 |
|
| <p> |
67 |
|
| content: "a" "" "n" |
68 |
|
#csstext |
69 |
|
p { |
70 |
|
content: "a" "" "n"; |
71 |
|
} |
72 |
|
|
73 |
|
#data |
74 |
|
p { |
75 |
|
content: """"; |
76 |
|
} |
77 |
|
#cssom |
78 |
|
| <p> |
79 |
|
| content: "" "" |
80 |
|
#csstext |
81 |
|
p { |
82 |
|
content: "" ""; |
83 |
|
} |
84 |
|
|
85 |
|
#data |
86 |
|
p { |
87 |
|
content: "normal", "none"; |
88 |
|
} |
89 |
|
#errors |
90 |
|
;2;20;m;no property semicolon |
91 |
|
#cssom |
92 |
|
| <p> |
93 |
|
|
94 |
|
#data |
95 |
|
p { |
96 |
|
content: url(a); |
97 |
|
} |
98 |
|
#cssom |
99 |
|
| <p> |
100 |
|
| content: url(a) |
101 |
|
#csstext |
102 |
|
p { |
103 |
|
content: url(a); |
104 |
|
} |
105 |
|
|
106 |
|
#data |
107 |
|
p { |
108 |
|
content: "IMAGE: " url(image); |
109 |
|
} |
110 |
|
#cssom |
111 |
|
| <p> |
112 |
|
| content: "IMAGE: " url(image) |
113 |
|
#csstext |
114 |
|
p { |
115 |
|
content: "IMAGE: " url(image); |
116 |
|
} |
117 |
|
|
118 |
|
#data |
119 |
|
p { |
120 |
|
content: counter(aBc); |
121 |
|
} |
122 |
|
#cssom |
123 |
|
| <p> |
124 |
|
| content: counter(aBc, decimal) |
125 |
|
#csstext |
126 |
|
p { |
127 |
|
content: counter(aBc, decimal); |
128 |
|
} |
129 |
|
|
130 |
|
#data |
131 |
|
p { |
132 |
|
content: counter(a, circlE); |
133 |
|
} |
134 |
|
#cssom |
135 |
|
| <p> |
136 |
|
| content: counter(a, circle) |
137 |
|
#csstext |
138 |
|
p { |
139 |
|
content: counter(a, circle); |
140 |
|
} |
141 |
|
|
142 |
|
#data |
143 |
|
p { |
144 |
|
content: counter(a, normal); |
145 |
|
} |
146 |
|
#errors |
147 |
|
;2;23;m;syntax error:'content' |
148 |
|
#cssom |
149 |
|
| <p> |
150 |
|
|
151 |
|
#data |
152 |
|
p { |
153 |
|
content: counter(chapter/* Chapter # */ ) "." counter(section /* # */ ); |
154 |
|
} |
155 |
|
#cssom |
156 |
|
| <p> |
157 |
|
| content: counter(chapter, decimal) "." counter(section, decimal) |
158 |
|
#csstext |
159 |
|
p { |
160 |
|
content: counter(chapter, decimal) "." counter(section, decimal); |
161 |
|
} |
162 |
|
|
163 |
|
#data |
164 |
|
p { |
165 |
|
content: counter(a, "b"); |
166 |
|
} |
167 |
|
#errors |
168 |
|
;2;23;m;syntax error:'content' |
169 |
|
#cssom |
170 |
|
| <p> |
171 |
|
|
172 |
|
#data |
173 |
|
p { |
174 |
|
content: counter(a, "b", decimal); |
175 |
|
} |
176 |
|
#errors |
177 |
|
;2;23;m;syntax error:'content' |
178 |
|
#cssom |
179 |
|
| <p> |
180 |
|
|
181 |
|
#data |
182 |
|
p { |
183 |
|
content: counters(a); |
184 |
|
} |
185 |
|
#errors |
186 |
|
;2;22;m;syntax error:'content' |
187 |
|
#cssom |
188 |
|
| <p> |
189 |
|
|
190 |
|
#data |
191 |
|
p { |
192 |
|
content: counters(a, decimal); |
193 |
|
} |
194 |
|
#errors |
195 |
|
;2;24;m;syntax error:'content' |
196 |
|
#cssom |
197 |
|
| <p> |
198 |
|
|
199 |
|
#data |
200 |
|
p { |
201 |
|
content: counters(a, "b"); |
202 |
|
} |
203 |
|
#cssom |
204 |
|
| <p> |
205 |
|
| content: counters(a, "b", decimal) |
206 |
|
#csstext |
207 |
|
p { |
208 |
|
content: counters(a, "b", decimal); |
209 |
|
} |
210 |
|
|
211 |
|
#data |
212 |
|
p { |
213 |
|
content: counters(a, "b", SQUARE); |
214 |
|
} |
215 |
|
#cssom |
216 |
|
| <p> |
217 |
|
| content: counters(a, "b", square) |
218 |
|
#csstext |
219 |
|
p { |
220 |
|
content: counters(a, "b", square); |
221 |
|
} |
222 |
|
|
223 |
|
#data |
224 |
|
p { |
225 |
|
content: counters(a, "b", none); |
226 |
|
} |
227 |
|
#cssom |
228 |
|
| <p> |
229 |
|
| content: counters(a, "b", none) |
230 |
|
#csstext |
231 |
|
p { |
232 |
|
content: counters(a, "b", none); |
233 |
|
} |
234 |
|
|
235 |
|
#data |
236 |
|
p { |
237 |
|
content: counters(a, "b", c); |
238 |
|
} |
239 |
|
#errors |
240 |
|
;2;29;m;syntax error:'content' |
241 |
|
#cssom |
242 |
|
| <p> |
243 |
|
|
244 |
|
#data |
245 |
|
p { |
246 |
|
content: counters(a, "b", inherit); |
247 |
|
} |
248 |
|
#errors |
249 |
|
;2;29;m;syntax error:'content' |
250 |
|
#cssom |
251 |
|
| <p> |
252 |
|
|
253 |
|
#data |
254 |
|
p { |
255 |
|
content: attr(a); |
256 |
|
} |
257 |
|
#cssom |
258 |
|
| <p> |
259 |
|
| content: attr(a) |
260 |
|
#csstext |
261 |
|
p { |
262 |
|
content: attr(a); |
263 |
|
} |
264 |
|
|
265 |
|
#data |
266 |
|
p { |
267 |
|
content: attr(aLign); |
268 |
|
} |
269 |
|
#cssom |
270 |
|
| <p> |
271 |
|
| content: attr(aLign) |
272 |
|
#csstext |
273 |
|
p { |
274 |
|
content: attr(aLign); |
275 |
|
} |
276 |
|
|
277 |
|
#data |
278 |
|
p { |
279 |
|
content: attr(a, b); |
280 |
|
} |
281 |
|
#errors |
282 |
|
;2;18;m;syntax error:'content' |
283 |
|
#cssom |
284 |
|
| <p> |
285 |
|
|
286 |
|
#data |
287 |
|
p { |
288 |
|
content: attr(|a); |
289 |
|
} |
290 |
|
#cssom |
291 |
|
| <p> |
292 |
|
| content: attr(a) |
293 |
|
#csstext |
294 |
|
p { |
295 |
|
content: attr(a); |
296 |
|
} |
297 |
|
|
298 |
|
#data |
299 |
|
p { |
300 |
|
content: attr(a|); |
301 |
|
} |
302 |
|
#errors |
303 |
|
;2;19;m;syntax error:'content' |
304 |
|
#cssom |
305 |
|
| <p> |
306 |
|
|
307 |
|
#data |
308 |
|
p { |
309 |
|
content: attr(a||b); |
310 |
|
} |
311 |
|
#errors |
312 |
|
;2;19;m;syntax error:'content' |
313 |
|
#cssom |
314 |
|
| <p> |
315 |
|
|
316 |
|
#data |
317 |
|
p { |
318 |
|
content: "[title:"attr(title )"]"; |
319 |
|
} |
320 |
|
#cssom |
321 |
|
| <p> |
322 |
|
| content: "[title:" attr(title) "]" |
323 |
|
#csstext |
324 |
|
p { |
325 |
|
content: "[title:" attr(title) "]"; |
326 |
|
} |
327 |
|
|
328 |
|
#data |
329 |
|
p { |
330 |
|
content: open-quote; |
331 |
|
} |
332 |
|
#cssom |
333 |
|
| <p> |
334 |
|
| content: open-quote |
335 |
|
#csstext |
336 |
|
p { |
337 |
|
content: open-quote; |
338 |
|
} |
339 |
|
|
340 |
|
#data |
341 |
|
p { |
342 |
|
content: close-quote; |
343 |
|
} |
344 |
|
#cssom |
345 |
|
| <p> |
346 |
|
| content: close-quote |
347 |
|
#csstext |
348 |
|
p { |
349 |
|
content: close-quote; |
350 |
|
} |
351 |
|
|
352 |
|
#data |
353 |
|
p { |
354 |
|
content: no-open-quote; |
355 |
|
} |
356 |
|
#cssom |
357 |
|
| <p> |
358 |
|
| content: no-open-quote |
359 |
|
#csstext |
360 |
|
p { |
361 |
|
content: no-open-quote; |
362 |
|
} |
363 |
|
|
364 |
|
#data |
365 |
|
p { |
366 |
|
content: no-close-quote; |
367 |
|
} |
368 |
|
#cssom |
369 |
|
| <p> |
370 |
|
| content: no-close-quote |
371 |
|
#csstext |
372 |
|
p { |
373 |
|
content: no-close-quote; |
374 |
|
} |
375 |
|
|
376 |
|
#data |
377 |
|
p { |
378 |
|
content: open-quote"QUOTE:"; |
379 |
|
} |
380 |
|
#cssom |
381 |
|
| <p> |
382 |
|
| content: open-quote "QUOTE:" |
383 |
|
#csstext |
384 |
|
p { |
385 |
|
content: open-quote "QUOTE:"; |
386 |
|
} |
387 |
|
|
388 |
|
#data |
389 |
|
p { |
390 |
quotes:; |
quotes:; |
391 |
} |
} |
392 |
#errors |
#errors |
574 |
|
|
575 |
#data |
#data |
576 |
p { |
p { |
577 |
|
quotes: "「" "」" "『" "』"; |
578 |
|
} |
579 |
|
#cssom |
580 |
|
| <p> |
581 |
|
| quotes: "「" "」" "『" "』" |
582 |
|
#csstext |
583 |
|
p { |
584 |
|
quotes: "「" "」" "『" "』"; |
585 |
|
} |
586 |
|
|
587 |
|
#data |
588 |
|
p { |
589 |
|
quotes: '"' '"' "'" "'"; |
590 |
|
} |
591 |
|
#cssom |
592 |
|
| <p> |
593 |
|
| quotes: """ """ "'" "'" |
594 |
|
#csstext |
595 |
|
p { |
596 |
|
quotes: """ """ "'" "'"; |
597 |
|
} |
598 |
|
|
599 |
|
#data |
600 |
|
p { |
601 |
quotes: "1" "2" "3"; |
quotes: "1" "2" "3"; |
602 |
} |
} |
603 |
#errors |
#errors |