1 |
#html 1 |
2 |
<!DOCTYPE HTML><p> |
3 |
|
4 |
#data |
5 |
p { |
6 |
color: rgb(1, 2, 3); |
7 |
} |
8 |
#cssom |
9 |
| <p> |
10 |
| color: rgb(1, 2, 3) |
11 |
#csstext |
12 |
p { |
13 |
color: rgb(1, 2, 3); |
14 |
} |
15 |
|
16 |
#data |
17 |
p { |
18 |
color: rgb(1, 2, +3); |
19 |
} |
20 |
#cssom |
21 |
| <p> |
22 |
| color: rgb(1, 2, 3) |
23 |
|
24 |
#data |
25 |
p { |
26 |
color: rgb(1, +2, 3); |
27 |
} |
28 |
#cssom |
29 |
| <p> |
30 |
| color: rgb(1, 2, 3) |
31 |
|
32 |
#data |
33 |
p { |
34 |
color: rgb(+1, 2, 3); |
35 |
} |
36 |
#cssom |
37 |
| <p> |
38 |
| color: rgb(1, 2, 3) |
39 |
|
40 |
#data |
41 |
p { |
42 |
color: rgb(-1, -2, -3); |
43 |
} |
44 |
#cssom |
45 |
| <p> |
46 |
| color: rgb(0, 0, 0) |
47 |
|
48 |
#data |
49 |
p { |
50 |
color: hsl(1, 2%, 3%); |
51 |
} |
52 |
#cssom |
53 |
| <p> |
54 |
| color: rgb(7.803, 7.5021, 7.497) |
55 |
|
56 |
#data |
57 |
p { |
58 |
color: hsl(+1, +2%, +3%); |
59 |
} |
60 |
#cssom |
61 |
| <p> |
62 |
| color: rgb(7.803, 7.5021, 7.497) |
63 |
|
64 |
#data |
65 |
p { |
66 |
color: hsl(-1, -2%, -3%); |
67 |
} |
68 |
#cssom |
69 |
| <p> |
70 |
| color: rgb(0, 0, 0) |
71 |
|
72 |
#data |
73 |
p { |
74 |
text-indent: 12px |
75 |
} |
76 |
#cssom |
77 |
| <p> |
78 |
| text-indent: 12px |
79 |
|
80 |
#data |
81 |
p { |
82 |
text-indent: +12px |
83 |
} |
84 |
#cssom |
85 |
| <p> |
86 |
| text-indent: 12px |
87 |
|
88 |
#data |
89 |
p { |
90 |
text-indent: -12px |
91 |
} |
92 |
#cssom |
93 |
| <p> |
94 |
| text-indent: -12px |
95 |
|
96 |
#data |
97 |
p { |
98 |
letter-spacing: 12px |
99 |
} |
100 |
#cssom |
101 |
| <p> |
102 |
| letter-spacing: 12px |
103 |
|
104 |
#data |
105 |
p { |
106 |
letter-spacing: +12px |
107 |
} |
108 |
#cssom |
109 |
| <p> |
110 |
| letter-spacing: 12px |
111 |
|
112 |
#data |
113 |
p { |
114 |
letter-spacing: -12px |
115 |
} |
116 |
#cssom |
117 |
| <p> |
118 |
| letter-spacing: -12px |
119 |
|
120 |
#data |
121 |
p { |
122 |
letter-spacing: 12 |
123 |
} |
124 |
#errors |
125 |
;2;19;m;CSS syntax error;'letter-spacing' |
126 |
#cssom |
127 |
| <p> |
128 |
|
129 |
#data |
130 |
p { |
131 |
letter-spacing: 12 |
132 |
} |
133 |
#option q |
134 |
#cssom |
135 |
| <p> |
136 |
| letter-spacing: 12px |
137 |
|
138 |
#data |
139 |
p { |
140 |
letter-spacing: +12 |
141 |
} |
142 |
#errors |
143 |
;2;20;m;CSS syntax error;'letter-spacing' |
144 |
#cssom |
145 |
| <p> |
146 |
|
147 |
#data |
148 |
p { |
149 |
letter-spacing: +12 |
150 |
} |
151 |
#option q |
152 |
#cssom |
153 |
| <p> |
154 |
| letter-spacing: 12px |
155 |
|
156 |
#data |
157 |
p { |
158 |
letter-spacing: -12 |
159 |
} |
160 |
#errors |
161 |
;2;20;m;CSS syntax error;'letter-spacing' |
162 |
#cssom |
163 |
| <p> |
164 |
|
165 |
#data |
166 |
p { |
167 |
letter-spacing: -12 |
168 |
} |
169 |
#option q |
170 |
#cssom |
171 |
| <p> |
172 |
| letter-spacing: -12px |
173 |
|
174 |
#data |
175 |
p { |
176 |
letter-spacing: normal |
177 |
} |
178 |
#cssom |
179 |
| <p> |
180 |
| letter-spacing: normal |
181 |
|
182 |
#data |
183 |
p { |
184 |
letter-spacing: +normal |
185 |
} |
186 |
#errors |
187 |
;2;20;m;CSS syntax error;'letter-spacing' |
188 |
#cssom |
189 |
| <p> |
190 |
|
191 |
#data |
192 |
p { |
193 |
letter-spacing: inherit |
194 |
} |
195 |
#cssom |
196 |
| <p> |
197 |
| letter-spacing: inherit |
198 |
|
199 |
#data |
200 |
p { |
201 |
letter-spacing: +inherit |
202 |
} |
203 |
#errors |
204 |
;2;20;m;CSS syntax error;'letter-spacing' |
205 |
#cssom |
206 |
| <p> |
207 |
|
208 |
#data |
209 |
p { |
210 |
word-spacing: 12px |
211 |
} |
212 |
#cssom |
213 |
| <p> |
214 |
| word-spacing: 12px |
215 |
|
216 |
#data |
217 |
p { |
218 |
word-spacing: +12px |
219 |
} |
220 |
#cssom |
221 |
| <p> |
222 |
| word-spacing: 12px |
223 |
|
224 |
#data |
225 |
p { |
226 |
word-spacing: -12px |
227 |
} |
228 |
#cssom |
229 |
| <p> |
230 |
| word-spacing: -12px |
231 |
|
232 |
#data |
233 |
p { |
234 |
word-spacing: 12 |
235 |
} |
236 |
#errors |
237 |
;2;17;m;CSS syntax error;'word-spacing' |
238 |
#cssom |
239 |
| <p> |
240 |
|
241 |
#data |
242 |
p { |
243 |
word-spacing: 12 |
244 |
} |
245 |
#option q |
246 |
#cssom |
247 |
| <p> |
248 |
| word-spacing: 12px |
249 |
|
250 |
#data |
251 |
p { |
252 |
word-spacing: +12 |
253 |
} |
254 |
#errors |
255 |
;2;18;m;CSS syntax error;'word-spacing' |
256 |
#cssom |
257 |
| <p> |
258 |
|
259 |
#data |
260 |
p { |
261 |
word-spacing: +12 |
262 |
} |
263 |
#option q |
264 |
#cssom |
265 |
| <p> |
266 |
| word-spacing: 12px |
267 |
|
268 |
#data |
269 |
p { |
270 |
word-spacing: -12 |
271 |
} |
272 |
#errors |
273 |
;2;18;m;CSS syntax error;'word-spacing' |
274 |
#cssom |
275 |
| <p> |
276 |
|
277 |
#data |
278 |
p { |
279 |
word-spacing: -12 |
280 |
} |
281 |
#option q |
282 |
#cssom |
283 |
| <p> |
284 |
| word-spacing: -12px |
285 |
|
286 |
#data |
287 |
p { |
288 |
word-spacing: normal |
289 |
} |
290 |
#cssom |
291 |
| <p> |
292 |
| word-spacing: normal |
293 |
|
294 |
#data |
295 |
p { |
296 |
word-spacing: +normal |
297 |
} |
298 |
#errors |
299 |
;2;18;m;CSS syntax error;'word-spacing' |
300 |
#cssom |
301 |
| <p> |
302 |
|
303 |
#data |
304 |
p { |
305 |
word-spacing: inherit |
306 |
} |
307 |
#cssom |
308 |
| <p> |
309 |
| word-spacing: inherit |
310 |
|
311 |
#data |
312 |
p { |
313 |
word-spacing: +inherit |
314 |
} |
315 |
#errors |
316 |
;2;18;m;CSS syntax error;'word-spacing' |
317 |
#cssom |
318 |
| <p> |
319 |
|
320 |
#data |
321 |
p { |
322 |
white-space: -moz-pre-wrap; |
323 |
} |
324 |
#cssom |
325 |
| <p> |
326 |
| white-space: pre-wrap |
327 |
#csstext |
328 |
p { |
329 |
white-space: pre-wrap; |
330 |
} |
331 |
|
332 |
#data |
333 |
p { |
334 |
white-space: -O-pre-wrap; |
335 |
} |
336 |
#cssom |
337 |
| <p> |
338 |
| white-space: pre-wrap |
339 |
#csstext |
340 |
p { |
341 |
white-space: pre-wrap; |
342 |
} |
343 |
|
344 |
#data |
345 |
p { |
346 |
writing-mode: lr-tb; |
347 |
} |
348 |
#cssom |
349 |
| <p> |
350 |
| writing-mode: lr-tb |
351 |
#csstext |
352 |
p { |
353 |
writing-mode: lr-tb; |
354 |
} |
355 |
#computed 1 p |
356 |
|
357 |
#data |
358 |
p { |
359 |
writing-mode: rl-tb; |
360 |
} |
361 |
#cssom |
362 |
| <p> |
363 |
| writing-mode: rl-tb |
364 |
#computed 1 p |
365 |
-| writing-mode: lr-tb |
366 |
+| writing-mode: rl-tb |
367 |
|
368 |
#data |
369 |
p { |
370 |
writing-mode: tb-rl; |
371 |
} |
372 |
#cssom |
373 |
| <p> |
374 |
| writing-mode: tb-rl |
375 |
#computed 1 p |
376 |
-| writing-mode: lr-tb |
377 |
+| writing-mode: tb-rl |
378 |
|
379 |
#data |
380 |
p { |
381 |
writing-mode: lr; |
382 |
} |
383 |
#cssom |
384 |
| <p> |
385 |
| writing-mode: lr |
386 |
#computed 1 p |
387 |
|
388 |
#data |
389 |
p { |
390 |
writing-mode: rl; |
391 |
} |
392 |
#cssom |
393 |
| <p> |
394 |
| writing-mode: rl |
395 |
#computed 1 p |
396 |
-| writing-mode: lr-tb |
397 |
+| writing-mode: rl-tb |
398 |
|
399 |
#data |
400 |
p { |
401 |
writing-mode: tb |
402 |
} |
403 |
#cssom |
404 |
| <p> |
405 |
| writing-mode: tb |
406 |
#computed 1 p |
407 |
-| writing-mode: lr-tb |
408 |
+| writing-mode: tb-rl |
409 |
|
410 |
#data |
411 |
p { |
412 |
writing-mode: inherit |
413 |
} |
414 |
#cssom |
415 |
| <p> |
416 |
| writing-mode: inherit |
417 |
#computed 1 p |
418 |
|
419 |
#data |
420 |
p { |
421 |
text-anchor: start; |
422 |
} |
423 |
#cssom |
424 |
| <p> |
425 |
| text-anchor: start |
426 |
#csstext |
427 |
p { |
428 |
text-anchor: start; |
429 |
} |
430 |
#computed 1 p |
431 |
|
432 |
#data |
433 |
p { |
434 |
text-anchor: middle; |
435 |
} |
436 |
#cssom |
437 |
| <p> |
438 |
| text-anchor: middle |
439 |
#computed 1 p |
440 |
-| text-anchor: start |
441 |
+| text-anchor: middle |
442 |
|
443 |
#data |
444 |
p { |
445 |
text-anchor: end |
446 |
} |
447 |
#cssom |
448 |
| <p> |
449 |
| text-anchor: end |
450 |
#computed 1 p |
451 |
-| text-anchor: start |
452 |
+| text-anchor: end |
453 |
|
454 |
#data |
455 |
p { |
456 |
text-anchor: inherit |
457 |
} |
458 |
#cssom |
459 |
| <p> |
460 |
| text-anchor: inherit |
461 |
#computed 1 p |
462 |
|
463 |
#data |
464 |
p { |
465 |
text-anchor: begin; |
466 |
} |
467 |
#errors |
468 |
;2;16;m;CSS syntax error;'text-anchor' |
469 |
#cssom |
470 |
| <p> |
471 |
|
472 |
#data |
473 |
p { |
474 |
text-amchor: start; |
475 |
} |
476 |
#errors |
477 |
;2;3;u;unknown property |
478 |
#cssom |
479 |
| <p> |
480 |
|
481 |
|
482 |
|
483 |
|