/[suikacvs]/markup/html/whatpm/t/css-visual.dat
Suika

Contents of /markup/html/whatpm/t/css-visual.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.14 - (hide annotations) (download)
Sun Feb 10 07:34:10 2008 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
Changes since 1.13: +105 -0 lines
++ whatpm/t/ChangeLog	10 Feb 2008 07:34:02 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* css-3.dat: New test file.

	* CSS-Parser-1.t: |css-3.dat| is added.  '-moz-pre-wrap' added.
	Typo for 'collapse' value fixed.  Support for '@namespace'
	serialization.

	* css-1.dat: New test data for selectors parsing.

	* css-font.dat: Error locations for 'u' errors are corrected.

	* css-table.dat: Test data for 'border-collapse' are added.

	* css-text.dat: Test data for '-moz-pre-wrap' are added.

	* css-visual.dat: Test data for 'background-position' are added.

++ whatpm/Whatpm/Charset/ChangeLog	10 Feb 2008 07:31:32 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* CharDet.pm (detect): Catch an error in detection function.

++ whatpm/Whatpm/CSS/ChangeLog	10 Feb 2008 07:30:34 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* Parser.pm: |attr(prefix|localname)| did not work.  Support
	for uppercase namespace prefixes (namespace prefixes were
	not normalized into lowercase when they were looked up.).  Report
	the property name token when an unknown property error is raised.
	The '-moz-pre-wrap' value is supported for 'white-space' property.
	('background-position'): 'center left' and 'center right'
	were not supported.

	* SelectorsParser.pm: Report the namespace prefix token when
	an undeclared prefix error is raised.  S_TOKEN in
	COMBINATOR_STATE was not handled correctly.

1 wakaba 1.1 #html 1
2     <!DOCTYPE HTML><p>
3    
4     #data
5     p {}
6     #computed 1 p
7    
8     #data
9     p {
10     margin-top: inherit;
11     }
12     #cssom
13     | <p>
14     | margin-top: inherit
15     #csstext
16     p {
17     margin-top: inherit;
18     }
19    
20     #data
21     p {
22     margin-top: inherit !important;
23     }
24     #cssom
25     | <p>
26     | margin-top: inherit !important
27     #csstext
28     p {
29     margin-top: inherit ! important;
30     }
31     #computed 1 p
32     #computedtext 1 p
33    
34     #data
35     p {
36     margin-top: inherit;
37     margin-right: inherit;
38     margin-bottom: inherit;
39     margin-left: inherit;
40     }
41     #cssom
42     | <p>
43 wakaba 1.4 | margin: inherit
44 wakaba 1.1 | margin-bottom: inherit
45     | margin-left: inherit
46     | margin-right: inherit
47     | margin-top: inherit
48     #csstext
49     p {
50     margin: inherit;
51     }
52     #computed 1 p
53     #computedtext 1 p
54    
55     #data
56     p {
57     margin-top: inherit;
58     margin-right: inherit !important;
59     margin-bottom: inherit;
60     margin-left: inherit;
61     }
62     #cssom
63     | <p>
64     | margin-bottom: inherit
65     | margin-left: inherit
66     | margin-right: inherit !important
67     | margin-top: inherit
68     #csstext
69     p {
70     margin-bottom: inherit;
71     margin-left: inherit;
72     margin-right: inherit ! important;
73     margin-top: inherit;
74     }
75     #computed 1 p
76     #computedtext 1 p
77    
78     #data
79     p {
80 wakaba 1.4 margin-top: inherit!important;
81     margin-right: inherit !important;
82     margin-bottom: inherit !important;
83     margin-left: inherit ! important ;
84     }
85     #cssom
86     | <p>
87     | margin: inherit !important
88     | margin-bottom: inherit !important
89     | margin-left: inherit !important
90     | margin-right: inherit !important
91     | margin-top: inherit !important
92     #csstext
93     p {
94     margin: inherit ! important;
95     }
96     #computed 1 p
97     #computedtext 1 p
98    
99     #data
100     p {
101 wakaba 1.1 margin-top: 12px;
102     }
103     #cssom
104     | <p>
105     | margin-top: 12px
106     #csstext
107     p {
108     margin-top: 12px;
109     }
110     #computed 1 p
111     -| margin: 0px
112 wakaba 1.2 +| margin: 12px 0px 0px
113 wakaba 1.4 -| margin-top: 0px
114     +| margin-top: 12px
115 wakaba 1.1
116     #data
117     p {
118     margin-top: 50cm;
119     }
120     #cssom
121     | <p>
122     | margin-top: 50cm
123     #csstext
124     p {
125     margin-top: 50cm;
126     }
127     #computed 1 p
128     -| margin: 0px
129 wakaba 1.2 +| margin: 1923.07692307692px 0px 0px
130     -| margin-top: 0px
131     +| margin-top: 1923.07692307692px
132 wakaba 1.1
133     #data
134     p {
135     margin-top: -12px;
136     }
137     #cssom
138     | <p>
139     | margin-top: -12px
140     #csstext
141     p {
142     margin-top: -12px;
143     }
144     #computed 1 p
145     -| margin: 0px
146 wakaba 1.2 +| margin: -12px 0px 0px
147     -| margin-top: 0px
148     +| margin-top: -12px
149 wakaba 1.1
150     #data
151     p {
152     margin-top: +12px;
153     }
154     #cssom
155     | <p>
156     | margin-top: 12px
157     #csstext
158     p {
159     margin-top: 12px;
160     }
161     #computed 1 p
162     -| margin: 0px
163 wakaba 1.2 +| margin: 12px 0px 0px
164 wakaba 1.4 -| margin-top: 0px
165     +| margin-top: 12px
166 wakaba 1.1
167     #data
168     p {
169     margin-top: 12.0px;
170     }
171     #cssom
172     | <p>
173     | margin-top: 12px
174     #csstext
175     p {
176     margin-top: 12px;
177     }
178     #computed 1 p
179     -| margin: 0px
180 wakaba 1.2 +| margin: 12px 0px 0px
181 wakaba 1.4 -| margin-top: 0px
182     +| margin-top: 12px
183 wakaba 1.1
184     #data
185     p {
186     margin-top: 12.01px;
187     }
188     #cssom
189     | <p>
190     | margin-top: 12.01px
191     #csstext
192     p {
193     margin-top: 12.01px;
194     }
195     #computed 1 p
196     -| margin: 0px
197 wakaba 1.2 +| margin: 12.01px 0px 0px
198     -| margin-top: 0px
199     +| margin-top: 12.01px
200 wakaba 1.1
201     #data
202     p {
203 wakaba 1.7 margin-top: 000012px;
204     }
205     #cssom
206     | <p>
207     | margin-top: 12px
208    
209     #data
210     p {
211     margin-top: 000012.120000px;
212     }
213     #cssom
214     | <p>
215     | margin-top: 12.12px
216    
217     #data
218     p {
219 wakaba 1.1 margin-top: .1px;
220     }
221     #cssom
222     | <p>
223     | margin-top: 0.1px
224     #csstext
225     p {
226     margin-top: 0.1px;
227     }
228     #computed 1 p
229     -| margin: 0px
230 wakaba 1.2 +| margin: 0.1px 0px 0px
231     -| margin-top: 0px
232     +| margin-top: 0.1px
233 wakaba 1.1
234     #data
235     p {
236     margin-top: 0;
237     }
238     #cssom
239     | <p>
240     | margin-top: 0px
241     #csstext
242     p {
243     margin-top: 0px;
244     }
245     #computed 1 p
246    
247     #data
248     p {
249     margin-right: +0
250     }
251     #cssom
252     | <p>
253     | margin-right: 0px
254     #csstext
255     p {
256     margin-right: 0px;
257     }
258    
259     #data
260     p {
261     margin-right: -0
262     }
263     #cssom
264     | <p>
265     | margin-right: 0px
266     #csstext
267     p {
268     margin-right: 0px;
269     }
270    
271     #data
272     p {
273     margin-bottom: 50;
274     }
275     #errors
276     ;2;18;m;syntax error:'margin-bottom'
277     #cssom
278     | <p>
279     #csstext
280     p {
281     }
282    
283     #data
284     p {
285     margin-bottom: 50;
286     }
287     #option q
288     #cssom
289     | <p>
290     | margin-bottom: 50px
291     #csstext
292     p {
293     margin-bottom: 50px;
294     }
295    
296     #data
297     p {
298     margin-bottom: 50 !important;
299     }
300     #option q
301     #cssom
302     | <p>
303     | margin-bottom: 50px !important
304     #csstext
305     p {
306     margin-bottom: 50px ! important;
307     }
308    
309     #data
310     p {
311     margin-bottom: -50
312     #option q
313     #errors
314     ;2;21;m;block not closed
315     #cssom
316     | <p>
317     | margin-bottom: -50px
318     #csstext
319     p {
320     margin-bottom: -50px;
321     }
322    
323     #data
324     p {
325     margin-top: 12%;
326     }
327     #cssom
328     | <p>
329     | margin-top: 12%
330     #csstext
331     p {
332     margin-top: 12%;
333     }
334     #computed 1 p
335     -| margin: 0px
336 wakaba 1.2 +| margin: 12% 0px 0px
337 wakaba 1.1 -| margin-top: 0px
338     +| margin-top: 12%
339     #computedtext 1 p
340     - margin: 0px;
341 wakaba 1.2 + margin: 12% 0px 0px;
342 wakaba 1.1
343     #data
344     p {
345     margin-top: -0%;
346     }
347     #cssom
348     | <p>
349     | margin-top: 0%
350     #csstext
351     p {
352     margin-top: 0%;
353     }
354    
355     #data
356     p {
357     margin-top: +12%;
358     }
359     #cssom
360     | <p>
361     | margin-top: 12%
362     #csstext
363     p {
364     margin-top: 12%;
365     }
366    
367     #data
368     p {
369     margin-top: 12.12%;
370     }
371     #cssom
372     | <p>
373     | margin-top: 12.12%
374     #csstext
375     p {
376     margin-top: 12.12%;
377     }
378    
379     #data
380     p {
381     margin-top: -.12%;
382     }
383     #cssom
384     | <p>
385     | margin-top: -0.12%
386     #csstext
387     p {
388     margin-top: -0.12%;
389     }
390    
391     #data
392     p {
393     margin-top: -/**/12%;
394     }
395     #cssom
396     | <p>
397     | margin-top: -12%
398     #csstext
399     p {
400     margin-top: -12%;
401     }
402    
403     #data
404     p {
405     margin-top: +/**/12%;
406     }
407     #cssom
408     | <p>
409     | margin-top: 12%
410     #csstext
411     p {
412     margin-top: 12%;
413     }
414    
415     #data
416     p {
417     margin-top: - 12%;
418     }
419     #errors
420     ;2;16;m;syntax error:'margin-top'
421     #cssom
422     | <p>
423     #csstext
424     p {
425     }
426    
427     #data
428     p {
429     margin-top: auto;
430     }
431     #cssom
432     | <p>
433     | margin-top: auto
434     #csstext
435     p {
436     margin-top: auto;
437     }
438     #computed 1 p
439     -| margin: 0px
440 wakaba 1.2 +| margin: auto 0px 0px
441 wakaba 1.1 -| margin-top: 0px
442     +| margin-top: auto
443     #computedtext 1 p
444     - margin: 0px;
445 wakaba 1.2 + margin: auto 0px 0px;
446 wakaba 1.1
447     #data
448     p {
449     margin-left: auto!important;
450     }
451     #cssom
452     | <p>
453     | margin-left: auto !important
454     #csstext
455     p {
456     margin-left: auto ! important;
457     }
458    
459     #data
460     p {
461     margin-left: -auto;
462     }
463     #errors
464     ;2;16;m;syntax error:'margin-left'
465     #cssom
466     | <p>
467     #csstext
468     p {
469     }
470    
471     #data
472     p {
473     margin-left: -/**/auto;
474     }
475     #errors
476     ;2;21;m;syntax error:'margin-left'
477     #cssom
478     | <p>
479     #csstext
480     p {
481     }
482    
483     #data
484     p {
485     margin-left: +auto;
486     }
487     #errors
488     ;2;17;m;syntax error:'margin-left'
489 wakaba 1.2 #cssom
490     | <p>
491     #csstext
492     p {
493     }
494    
495     #data
496     p {
497     margin: 0;
498     }
499     #cssom
500     | <p>
501 wakaba 1.3 | margin: 0px
502 wakaba 1.2 | margin-bottom: 0px
503     | margin-left: 0px
504     | margin-right: 0px
505     | margin-top: 0px
506     #csstext
507     p {
508     margin: 0px;
509     }
510    
511     #data
512     p {
513     margin: +0;
514     }
515     #cssom
516     | <p>
517 wakaba 1.3 | margin: 0px
518 wakaba 1.2 | margin-bottom: 0px
519     | margin-left: 0px
520     | margin-right: 0px
521     | margin-top: 0px
522     #csstext
523     p {
524     margin: 0px;
525     }
526    
527     #data
528     p {
529     margin: +0 +0 +0 +0;
530     }
531     #cssom
532     | <p>
533 wakaba 1.3 | margin: 0px
534 wakaba 1.2 | margin-bottom: 0px
535     | margin-left: 0px
536     | margin-right: 0px
537     | margin-top: 0px
538     #csstext
539     p {
540     margin: 0px;
541     }
542    
543     #data
544     p {
545     margin: +0 +;
546     }
547     #errors
548     ;2;15;m;syntax error:'margin'
549     #cssom
550     | <p>
551     #csstext
552     p {
553     }
554    
555     #data
556     p {
557     margin: +0 +auto;
558     }
559     #errors
560     ;2;15;m;syntax error:'margin'
561     #cssom
562     | <p>
563     #csstext
564     p {
565     }
566    
567     #data
568     p {
569     margin: +0 +0 +;
570     }
571     #errors
572     ;2;18;m;syntax error:'margin'
573     #cssom
574     | <p>
575     #csstext
576     p {
577     }
578    
579     #data
580     p {
581     margin: +0 +0 +auto;
582     }
583     #errors
584     ;2;18;m;syntax error:'margin'
585     #cssom
586     | <p>
587     #csstext
588     p {
589     }
590    
591     #data
592     p {
593     margin: +0 +0 +0 +;
594     }
595     #errors
596     ;2;21;m;syntax error:'margin'
597     #cssom
598     | <p>
599     #csstext
600     p {
601     }
602    
603     #data
604     p {
605     margin: +0 +0 +0 +auto;
606     }
607     #errors
608     ;2;21;m;syntax error:'margin'
609     #cssom
610     | <p>
611     #csstext
612     p {
613     }
614    
615     #data
616     p {
617     margin: +0 +0 +0 +0 +;
618     }
619     #errors
620     ;2;23;m;no property semicolon
621     #cssom
622     | <p>
623     #csstext
624     p {
625     }
626    
627     #data
628     p {
629     margin: -0;
630     }
631     #cssom
632     | <p>
633 wakaba 1.3 | margin: 0px
634 wakaba 1.2 | margin-bottom: 0px
635     | margin-left: 0px
636     | margin-right: 0px
637     | margin-top: 0px
638     #csstext
639     p {
640     margin: 0px;
641     }
642    
643     #data
644     p {
645     margin: 0.0;
646     }
647     #cssom
648     | <p>
649 wakaba 1.3 | margin: 0px
650 wakaba 1.2 | margin-bottom: 0px
651     | margin-left: 0px
652     | margin-right: 0px
653     | margin-top: 0px
654     #csstext
655     p {
656     margin: 0px;
657     }
658    
659     #data
660     p {
661     margin: 0 1px;
662     }
663     #cssom
664     | <p>
665 wakaba 1.3 | margin: 0px 1px
666 wakaba 1.2 | margin-bottom: 0px
667     | margin-left: 1px
668     | margin-right: 1px
669     | margin-top: 0px
670     #csstext
671     p {
672     margin: 0px 1px;
673     }
674    
675     #data
676     p {
677     margin: 0px 1px 2px;
678     }
679     #cssom
680     | <p>
681 wakaba 1.3 | margin: 0px 1px 2px
682 wakaba 1.2 | margin-bottom: 2px
683     | margin-left: 1px
684     | margin-right: 1px
685     | margin-top: 0px
686     #csstext
687     p {
688     margin: 0px 1px 2px;
689     }
690    
691     #data
692     p {
693     margin: -1px -2px -3px -4px;
694     }
695     #cssom
696     | <p>
697 wakaba 1.3 | margin: -1px -2px -3px -4px
698 wakaba 1.2 | margin-bottom: -3px
699     | margin-left: -4px
700     | margin-right: -2px
701     | margin-top: -1px
702     #csstext
703     p {
704     margin: -1px -2px -3px -4px;
705     }
706    
707     #data
708     p {
709     margin: inherit;
710     }
711     #cssom
712     | <p>
713 wakaba 1.3 | margin: inherit
714 wakaba 1.2 | margin-bottom: inherit
715     | margin-left: inherit
716     | margin-right: inherit
717     | margin-top: inherit
718     #csstext
719     p {
720     margin: inherit;
721     }
722    
723     #data
724     p {
725     margin: 0 2px 0 2px;
726     }
727     #cssom
728     | <p>
729 wakaba 1.3 | margin: 0px 2px
730 wakaba 1.2 | margin-bottom: 0px
731     | margin-left: 2px
732     | margin-right: 2px
733     | margin-top: 0px
734     #csstext
735     p {
736     margin: 0px 2px;
737     }
738    
739     #data
740     p {
741     margin: 0 !important;
742     }
743     #cssom
744     | <p>
745 wakaba 1.3 | margin: 0px !important
746 wakaba 1.2 | margin-bottom: 0px !important
747     | margin-left: 0px !important
748     | margin-right: 0px !important
749     | margin-top: 0px !important
750     #csstext
751     p {
752     margin: 0px ! important;
753     }
754    
755     #data
756     p {
757     margin: 0;
758     margin-left: 1px !important;
759     }
760     #cssom
761     | <p>
762     | margin-bottom: 0px
763     | margin-left: 1px !important
764     | margin-right: 0px
765     | margin-top: 0px
766     #csstext
767     p {
768     margin-bottom: 0px;
769     margin-left: 1px ! important;
770     margin-right: 0px;
771     margin-top: 0px;
772     }
773    
774     #data
775     p {
776     margin: 0;
777     margin-top: 0px ! important;
778     }
779     #cssom
780     | <p>
781     | margin-bottom: 0px
782     | margin-left: 0px
783     | margin-right: 0px
784     | margin-top: 0px !important
785     #csstext
786     p {
787     margin-bottom: 0px;
788     margin-left: 0px;
789     margin-right: 0px;
790     margin-top: 0px ! important;
791     }
792    
793     #data
794     p {
795     margin: 0;
796     margin-right: 0px !important;
797     }
798     #cssom
799     | <p>
800     | margin-bottom: 0px
801     | margin-left: 0px
802     | margin-right: 0px !important
803     | margin-top: 0px
804     #csstext
805     p {
806     margin-bottom: 0px;
807     margin-left: 0px;
808     margin-right: 0px ! important;
809     margin-top: 0px;
810     }
811    
812     #data
813     p {
814     margin: 0;
815     margin-bottom: 0px !important;
816     }
817     #cssom
818     | <p>
819     | margin-bottom: 0px !important
820     | margin-left: 0px
821     | margin-right: 0px
822     | margin-top: 0px
823     #csstext
824     p {
825     margin-bottom: 0px ! important;
826     margin-left: 0px;
827     margin-right: 0px;
828     margin-top: 0px;
829     }
830    
831     #data
832     p {
833     margin: 0;
834     margin-left: 0px !important;
835     }
836     #cssom
837     | <p>
838     | margin-bottom: 0px
839     | margin-left: 0px !important
840     | margin-right: 0px
841     | margin-top: 0px
842     #csstext
843     p {
844     margin-bottom: 0px;
845     margin-left: 0px ! important;
846     margin-right: 0px;
847     margin-top: 0px;
848     }
849    
850     #data
851     p {
852     margin: 0 !important;
853     margin-top: 1px;
854     }
855     #cssom
856     | <p>
857 wakaba 1.3 | margin: 0px !important
858 wakaba 1.2 | margin-bottom: 0px !important
859     | margin-left: 0px !important
860     | margin-right: 0px !important
861     | margin-top: 0px !important
862     #csstext
863     p {
864     margin: 0px ! important;
865     }
866    
867     #data
868     p {
869     margin: 0 ! important;
870     margin-left: 0px ! important;
871     }
872     #cssom
873     | <p>
874 wakaba 1.3 | margin: 0px !important
875 wakaba 1.2 | margin-bottom: 0px !important
876     | margin-left: 0px !important
877     | margin-right: 0px !important
878     | margin-top: 0px !important
879     #csstext
880     p {
881     margin: 0px ! important;
882     }
883    
884     #data
885     p {
886     margin-top: 0;
887     margin-bottom: 0;
888     margin-left: 0;
889     }
890     #cssom
891     | <p>
892     | margin-bottom: 0px
893     | margin-left: 0px
894     | margin-top: 0px
895     #csstext
896     p {
897     margin-bottom: 0px;
898     margin-left: 0px;
899     margin-top: 0px;
900     }
901    
902     #data
903     p {
904     margin: 0;
905     margin-top: inherit;
906     }
907     #cssom
908     | <p>
909     | margin-bottom: 0px
910     | margin-left: 0px
911     | margin-right: 0px
912     | margin-top: inherit
913     #csstext
914     p {
915     margin-bottom: 0px;
916     margin-left: 0px;
917     margin-right: 0px;
918     margin-top: inherit;
919     }
920    
921     #data
922     p {
923     margin: 0;
924     margin-right: inherit;
925     }
926     #cssom
927     | <p>
928     | margin-bottom: 0px
929     | margin-left: 0px
930     | margin-right: inherit
931     | margin-top: 0px
932     #csstext
933     p {
934     margin-bottom: 0px;
935     margin-left: 0px;
936     margin-right: inherit;
937     margin-top: 0px;
938     }
939    
940     #data
941     p {
942     margin: 0;
943     margin-bottom: inherit;
944     }
945     #cssom
946     | <p>
947     | margin-bottom: inherit
948     | margin-left: 0px
949     | margin-right: 0px
950     | margin-top: 0px
951     #csstext
952     p {
953     margin-bottom: inherit;
954     margin-left: 0px;
955     margin-right: 0px;
956     margin-top: 0px;
957     }
958    
959     #data
960     p {
961     margin: 0;
962     margin-left: inherit;
963     }
964     #cssom
965     | <p>
966     | margin-bottom: 0px
967     | margin-left: inherit
968     | margin-right: 0px
969     | margin-top: 0px
970     #csstext
971     p {
972     margin-bottom: 0px;
973     margin-left: inherit;
974     margin-right: 0px;
975     margin-top: 0px;
976     }
977    
978     #data
979     p {
980     margin: 0;
981     margin-top: inherit;
982     margin-bottom: inherit;
983     }
984     #cssom
985     | <p>
986     | margin-bottom: inherit
987     | margin-left: 0px
988     | margin-right: 0px
989     | margin-top: inherit
990     #csstext
991     p {
992     margin-bottom: inherit;
993     margin-left: 0px;
994     margin-right: 0px;
995     margin-top: inherit;
996     }
997    
998     #data
999     p {
1000     margin: inherit 0;
1001     }
1002     #errors
1003     ;2;19;m;no property semicolon
1004 wakaba 1.1 #cssom
1005     | <p>
1006     #csstext
1007     p {
1008     }
1009 wakaba 1.3
1010     #data
1011     /*
1012     TODO: border properties
1013     */
1014    
1015     #data
1016     p {
1017     border-color: blue;
1018     }
1019     #cssom
1020     | <p>
1021     | border-bottom-color: blue
1022     | border-color: blue
1023     | border-left-color: blue
1024     | border-right-color: blue
1025     | border-top-color: blue
1026     #csstext
1027     p {
1028     border-color: blue;
1029     }
1030    
1031     #data
1032     p {
1033     border-color: blue;
1034     border-top-color: red;
1035     }
1036     #cssom
1037     | <p>
1038     | border-bottom-color: blue
1039     | border-color: red blue blue
1040     | border-left-color: blue
1041     | border-right-color: blue
1042     | border-top-color: red
1043     #csstext
1044     p {
1045     border-color: red blue blue;
1046     }
1047    
1048     #data
1049     p {
1050     border-color: blue;
1051     border-right-color: blue ! important;
1052     }
1053     #cssom
1054     | <p>
1055     | border-bottom-color: blue
1056     | border-left-color: blue
1057     | border-right-color: blue !important
1058     | border-top-color: blue
1059     #csstext
1060     p {
1061     border-bottom-color: blue;
1062     border-left-color: blue;
1063     border-right-color: blue ! important;
1064     border-top-color: blue;
1065     }
1066    
1067     #data
1068     p {
1069     border-color: inherit;
1070     border-right-color: blue ! important;
1071     }
1072     #cssom
1073     | <p>
1074     | border-bottom-color: inherit
1075     | border-left-color: inherit
1076     | border-right-color: blue !important
1077     | border-top-color: inherit
1078     #csstext
1079     p {
1080     border-bottom-color: inherit;
1081     border-left-color: inherit;
1082     border-right-color: blue ! important;
1083     border-top-color: inherit;
1084     }
1085    
1086     #data
1087     p {
1088     border-color: inherit;
1089     }
1090     #cssom
1091     | <p>
1092     | border-bottom-color: inherit
1093 wakaba 1.5 | border-color: inherit
1094 wakaba 1.3 | border-left-color: inherit
1095     | border-right-color: inherit
1096     | border-top-color: inherit
1097     #csstext
1098     p {
1099     border-color: inherit;
1100     }
1101    
1102     #data
1103     p {
1104 wakaba 1.5 border-color: blue red;
1105     border-bottom-color: green ! important;
1106     }
1107     #cssom
1108     | <p>
1109     | border-bottom-color: green !important
1110     | border-left-color: red
1111     | border-right-color: red
1112     | border-top-color: blue
1113     #csstext
1114     p {
1115     border-bottom-color: green ! important;
1116     border-left-color: red;
1117     border-right-color: red;
1118     border-top-color: blue;
1119     }
1120    
1121     #data
1122     p {
1123     border-color: blue red;
1124     border-bottom-color: INHERIT;
1125     }
1126     #cssom
1127     | <p>
1128     | border-bottom-color: inherit
1129     | border-left-color: red
1130     | border-right-color: red
1131     | border-top-color: blue
1132     #csstext
1133     p {
1134     border-bottom-color: inherit;
1135     border-left-color: red;
1136     border-right-color: red;
1137     border-top-color: blue;
1138     }
1139    
1140     #data
1141     p {
1142     border-color: blue red;
1143     border-bottom-color: green ! important;
1144     border-bottom: 1px black dotted;
1145     }
1146     #cssom
1147     | <p>
1148     | border-bottom-color: green !important
1149     | border-bottom-style: dotted
1150     | border-bottom-width: 1px
1151     | border-left-color: red
1152     | border-right-color: red
1153     | border-top-color: blue
1154     #csstext
1155     p {
1156     border-bottom-color: green ! important;
1157     border-bottom-style: dotted;
1158     border-bottom-width: 1px;
1159     border-left-color: red;
1160     border-right-color: red;
1161     border-top-color: blue;
1162     }
1163    
1164     #data
1165     p {
1166     border-color: blue red;
1167     border-bottom-color: green;
1168     border-bottom: 1px black dotted;
1169     }
1170     #cssom
1171     | <p>
1172     | border-bottom: 1px dotted black
1173     | border-bottom-color: black
1174     | border-bottom-style: dotted
1175     | border-bottom-width: 1px
1176     | border-color: blue red black
1177     | border-left-color: red
1178     | border-right-color: red
1179     | border-top-color: blue
1180     #csstext
1181     p {
1182     border-bottom: 1px dotted black;
1183     border-left-color: red;
1184     border-right-color: red;
1185     border-top-color: blue;
1186     }
1187    
1188     #data
1189     p {
1190 wakaba 1.3 border-style: solid none;
1191     }
1192     #cssom
1193     | <p>
1194     | border-bottom-style: solid
1195     | border-left-style: none
1196     | border-right-style: none
1197     | border-style: solid none
1198     | border-top-style: solid
1199     #csstext
1200     p {
1201     border-style: solid none;
1202     }
1203    
1204     #data
1205     p {
1206     border-style: solid none;
1207     border-top-style: dotted;
1208     }
1209     #cssom
1210     | <p>
1211     | border-bottom-style: solid
1212     | border-left-style: none
1213     | border-right-style: none
1214     | border-style: dotted none solid
1215     | border-top-style: dotted
1216     #csstext
1217     p {
1218     border-style: dotted none solid;
1219     }
1220    
1221     #data
1222     p {
1223     border-style: solid none;
1224     border-right-style: none ! important;
1225     }
1226     #cssom
1227     | <p>
1228     | border-bottom-style: solid
1229     | border-left-style: none
1230     | border-right-style: none !important
1231     | border-top-style: solid
1232     #csstext
1233     p {
1234     border-bottom-style: solid;
1235     border-left-style: none;
1236     border-right-style: none ! important;
1237     border-top-style: solid;
1238     }
1239    
1240     #data
1241     p {
1242     border-style: inherit;
1243     }
1244     #cssom
1245     | <p>
1246     | border-bottom-style: inherit
1247     | border-left-style: inherit
1248     | border-right-style: inherit
1249     | border-style: inherit
1250     | border-top-style: inherit
1251     #csstext
1252     p {
1253     border-style: inherit;
1254     }
1255    
1256     #data
1257     p {
1258     border-style: inherit;
1259     border-top-style: none;
1260     }
1261     #cssom
1262     | <p>
1263     | border-bottom-style: inherit
1264     | border-left-style: inherit
1265     | border-right-style: inherit
1266     | border-top-style: none
1267     #csstext
1268     p {
1269     border-bottom-style: inherit;
1270     border-left-style: inherit;
1271     border-right-style: inherit;
1272     border-top-style: none;
1273     }
1274    
1275     #data
1276     p {
1277 wakaba 1.8 border-top-width: 5px
1278     }
1279     #cssom
1280     | <p>
1281     | border-top-width: 5px
1282     #csstext
1283     p {
1284     border-top-width: 5px;
1285     }
1286    
1287     #data
1288     p {
1289     border-top-width: +5px
1290     }
1291     #cssom
1292     | <p>
1293     | border-top-width: 5px
1294     #csstext
1295     p {
1296     border-top-width: 5px;
1297     }
1298    
1299     #data
1300     p {
1301     border-top-width: -5px
1302     }
1303     #errors
1304     ;2;22;m;syntax error:'border-top-width'
1305     #cssom
1306     | <p>
1307     #csstext
1308     p {
1309     }
1310    
1311     #data
1312     p {
1313     border-top-width: 0;
1314     }
1315     #cssom
1316     | <p>
1317     | border-top-width: 0px
1318    
1319     #data
1320     p {
1321     border-top-width: +0;
1322     }
1323     #cssom
1324     | <p>
1325     | border-top-width: 0px
1326    
1327     #data
1328     p {
1329     border-top-width: -0;
1330     }
1331     #cssom
1332     | <p>
1333     | border-top-width: 0px
1334    
1335     #data
1336     p {
1337     border-top-width: 0.0000;
1338     }
1339     #cssom
1340     | <p>
1341     | border-top-width: 0px
1342    
1343     #data
1344     p {
1345     border-top-width: 00000012px;
1346     }
1347     #cssom
1348     | <p>
1349     | border-top-width: 12px
1350    
1351     #data
1352     p {
1353     border-top-width: 12.012000px;
1354     }
1355     #cssom
1356     | <p>
1357     | border-top-width: 12.012px
1358    
1359     #data
1360     p {
1361     border-top-width: 12;
1362     }
1363     #errors
1364     ;2;21;m;syntax error:'border-top-width'
1365     #cssom
1366     | <p>
1367    
1368     #data
1369     p {
1370     border-top-width: 12;
1371     }
1372     #option q
1373     #cssom
1374     | <p>
1375     | border-top-width: 12px
1376    
1377     #data
1378     p {
1379     border-top-width: +12;
1380     }
1381     #errors
1382     ;2;22;m;syntax error:'border-top-width'
1383     #cssom
1384     | <p>
1385    
1386     #data
1387     p {
1388     border-top-width: +12;
1389     }
1390     #option q
1391     #cssom
1392     | <p>
1393     | border-top-width: 12px
1394    
1395     #data
1396     p {
1397     border-top-width: -12;
1398     }
1399     #errors
1400     ;2;22;m;syntax error:'border-top-width'
1401     #cssom
1402     | <p>
1403    
1404     #data
1405     p {
1406     border-top-width: -12;
1407     }
1408     #option q
1409     #errors
1410     ;2;22;m;syntax error:'border-top-width'
1411     #cssom
1412     | <p>
1413    
1414     #data
1415     p {
1416 wakaba 1.3 border-width: 5px;
1417     }
1418     #cssom
1419     | <p>
1420     | border-bottom-width: 5px
1421     | border-left-width: 5px
1422     | border-right-width: 5px
1423     | border-top-width: 5px
1424     | border-width: 5px
1425     #csstext
1426     p {
1427     border-width: 5px;
1428     }
1429    
1430     #data
1431     p {
1432     border-width: 5px;
1433     border-top-width: 4px;
1434     }
1435     #cssom
1436     | <p>
1437     | border-bottom-width: 5px
1438     | border-left-width: 5px
1439     | border-right-width: 5px
1440     | border-top-width: 4px
1441     | border-width: 4px 5px 5px
1442     #csstext
1443     p {
1444     border-width: 4px 5px 5px;
1445     }
1446    
1447     #data
1448     p {
1449     border-width: 5px;
1450     border-right-width: inherit;
1451     }
1452     #cssom
1453     | <p>
1454     | border-bottom-width: 5px
1455     | border-left-width: 5px
1456     | border-right-width: inherit
1457     | border-top-width: 5px
1458     #csstext
1459     p {
1460     border-bottom-width: 5px;
1461     border-left-width: 5px;
1462     border-right-width: inherit;
1463     border-top-width: 5px;
1464     }
1465    
1466     #data
1467     p {
1468     border-width: 5px;
1469     border-left-width: 5px !important;
1470     }
1471     #cssom
1472     | <p>
1473     | border-bottom-width: 5px
1474     | border-left-width: 5px !important
1475     | border-right-width: 5px
1476     | border-top-width: 5px
1477     #csstext
1478     p {
1479     border-bottom-width: 5px;
1480     border-left-width: 5px ! important;
1481     border-right-width: 5px;
1482     border-top-width: 5px;
1483     }
1484    
1485     #data
1486     p {
1487 wakaba 1.8 border-width: 0;
1488     }
1489     #cssom
1490     | <p>
1491     | border-bottom-width: 0px
1492     | border-left-width: 0px
1493     | border-right-width: 0px
1494     | border-top-width: 0px
1495     | border-width: 0px
1496    
1497     #data
1498     p {
1499     border-width: +0;
1500     }
1501     #cssom
1502     | <p>
1503     | border-bottom-width: 0px
1504     | border-left-width: 0px
1505     | border-right-width: 0px
1506     | border-top-width: 0px
1507     | border-width: 0px
1508    
1509     #data
1510     p {
1511     border-width: -0;
1512     }
1513     #cssom
1514     | <p>
1515     | border-bottom-width: 0px
1516     | border-left-width: 0px
1517     | border-right-width: 0px
1518     | border-top-width: 0px
1519     | border-width: 0px
1520    
1521     #data
1522     p {
1523     border-width: 12;
1524     }
1525     #errors
1526     ;2;17;m;syntax error:'border-width'
1527     #cssom
1528     | <p>
1529    
1530     #data
1531     p {
1532     border-width: 12;
1533     }
1534     #option q
1535     #cssom
1536     | <p>
1537     | border-bottom-width: 12px
1538     | border-left-width: 12px
1539     | border-right-width: 12px
1540     | border-top-width: 12px
1541     | border-width: 12px
1542    
1543     #data
1544     p {
1545     border-width: +12;
1546     }
1547     #errors
1548     ;2;18;m;syntax error:'border-width'
1549     #cssom
1550     | <p>
1551    
1552     #data
1553     p {
1554     border-width: +12;
1555     }
1556     #option q
1557     #cssom
1558     | <p>
1559     | border-bottom-width: 12px
1560     | border-left-width: 12px
1561     | border-right-width: 12px
1562     | border-top-width: 12px
1563     | border-width: 12px
1564    
1565     #data
1566     p {
1567     border-width: 5px;
1568     }
1569     #cssom
1570     | <p>
1571     | border-bottom-width: 5px
1572     | border-left-width: 5px
1573     | border-right-width: 5px
1574     | border-top-width: 5px
1575     | border-width: 5px
1576    
1577     #data
1578     p {
1579     border-width: +5px;
1580     }
1581     #cssom
1582     | <p>
1583     | border-bottom-width: 5px
1584     | border-left-width: 5px
1585     | border-right-width: 5px
1586     | border-top-width: 5px
1587     | border-width: 5px
1588    
1589     #data
1590     p {
1591     border-width: -5px;
1592     }
1593     #errors
1594     ;2;18;m;syntax error:'border-width'
1595     #cssom
1596     | <p>
1597    
1598     #data
1599     p {
1600     border-width: 5px 6px;
1601     }
1602     #cssom
1603     | <p>
1604     | border-bottom-width: 5px
1605     | border-left-width: 6px
1606     | border-right-width: 6px
1607     | border-top-width: 5px
1608     | border-width: 5px 6px
1609    
1610     #data
1611     p {
1612     border-width: 5px +6px;
1613     }
1614     #cssom
1615     | <p>
1616     | border-bottom-width: 5px
1617     | border-left-width: 6px
1618     | border-right-width: 6px
1619     | border-top-width: 5px
1620     | border-width: 5px 6px
1621    
1622     #data
1623     p {
1624     border-width: 5px -6px;
1625     }
1626     #errors
1627     ;2;22;m;syntax error:'border-width'
1628     #cssom
1629     | <p>
1630    
1631     #data
1632     p {
1633     border-width: 5px 6px 7px;
1634     }
1635     #cssom
1636     | <p>
1637     | border-bottom-width: 7px
1638     | border-left-width: 6px
1639     | border-right-width: 6px
1640     | border-top-width: 5px
1641     | border-width: 5px 6px 7px
1642    
1643     #data
1644     p {
1645     border-width: 5px 6px +7px;
1646     }
1647     #cssom
1648     | <p>
1649     | border-bottom-width: 7px
1650     | border-left-width: 6px
1651     | border-right-width: 6px
1652     | border-top-width: 5px
1653     | border-width: 5px 6px 7px
1654    
1655     #data
1656     p {
1657     border-width: 5px 6px -7px;
1658     }
1659     #errors
1660     ;2;26;m;syntax error:'border-width'
1661     #cssom
1662     | <p>
1663    
1664     #data
1665     p {
1666     border-width: 5px 6px 7px 8px;
1667     }
1668     #cssom
1669     | <p>
1670     | border-bottom-width: 7px
1671     | border-left-width: 8px
1672     | border-right-width: 6px
1673     | border-top-width: 5px
1674     | border-width: 5px 6px 7px 8px
1675    
1676     #data
1677     p {
1678     border-width: 5px 6px 7px +8px;
1679     }
1680     #cssom
1681     | <p>
1682     | border-bottom-width: 7px
1683     | border-left-width: 8px
1684     | border-right-width: 6px
1685     | border-top-width: 5px
1686     | border-width: 5px 6px 7px 8px
1687    
1688     #data
1689     p {
1690     border-width: 5px 6px 7px -8px;
1691     }
1692     #errors
1693     ;2;30;m;syntax error:'border-width'
1694     #cssom
1695     | <p>
1696    
1697     #data
1698     p {
1699 wakaba 1.3 border-top: 1px solid red;
1700     }
1701     #cssom
1702     | <p>
1703     | border-top: 1px solid red
1704     | border-top-color: red
1705     | border-top-style: solid
1706     | border-top-width: 1px
1707     #csstext
1708     p {
1709     border-top: 1px solid red;
1710     }
1711    
1712     #data
1713     p {
1714     border-bottom: 1px solid red;
1715     }
1716     #cssom
1717     | <p>
1718     | border-bottom: 1px solid red
1719     | border-bottom-color: red
1720     | border-bottom-style: solid
1721     | border-bottom-width: 1px
1722     #csstext
1723     p {
1724     border-bottom: 1px solid red;
1725     }
1726    
1727     #data
1728     p {
1729     border-top: inherit;
1730     }
1731     #cssom
1732     | <p>
1733     | border-top: inherit
1734     | border-top-color: inherit
1735     | border-top-style: inherit
1736     | border-top-width: inherit
1737     #csstext
1738     p {
1739     border-top: inherit;
1740     }
1741    
1742     #data
1743     p {
1744     border-top: inherit;
1745     border-top-width: 3px;
1746     }
1747     #cssom
1748     | <p>
1749     | border-top-color: inherit
1750     | border-top-style: inherit
1751     | border-top-width: 3px
1752     #csstext
1753     p {
1754     border-top-color: inherit;
1755     border-top-style: inherit;
1756     border-top-width: 3px;
1757     }
1758    
1759     #data
1760     p {
1761     border-top: inherit;
1762     border-top-width: inherit ! important;
1763     }
1764     #cssom
1765     | <p>
1766     | border-top-color: inherit
1767     | border-top-style: inherit
1768     | border-top-width: inherit !important
1769     #csstext
1770     p {
1771     border-top-color: inherit;
1772     border-top-style: inherit;
1773     border-top-width: inherit ! important;
1774     }
1775    
1776     #data
1777     p {
1778     border-bottom: inherit;
1779     border-bottom-width: 3px;
1780     }
1781     #cssom
1782     | <p>
1783     | border-bottom-color: inherit
1784     | border-bottom-style: inherit
1785     | border-bottom-width: 3px
1786     #csstext
1787     p {
1788     border-bottom-color: inherit;
1789     border-bottom-style: inherit;
1790     border-bottom-width: 3px;
1791     }
1792    
1793     #data
1794     p {
1795     border: 1px solid red;
1796     }
1797     #cssom
1798     | <p>
1799     | border: 1px solid red
1800     | border-bottom: 1px solid red
1801     | border-bottom-color: red
1802     | border-bottom-style: solid
1803     | border-bottom-width: 1px
1804     | border-color: red
1805     | border-left: 1px solid red
1806     | border-left-color: red
1807     | border-left-style: solid
1808     | border-left-width: 1px
1809     | border-right: 1px solid red
1810     | border-right-color: red
1811     | border-right-style: solid
1812     | border-right-width: 1px
1813     | border-style: solid
1814     | border-top: 1px solid red
1815     | border-top-color: red
1816     | border-top-style: solid
1817     | border-top-width: 1px
1818     | border-width: 1px
1819     #csstext
1820     p {
1821     border: 1px solid red;
1822     }
1823    
1824     #data
1825     p {
1826     border: 1px solid red;
1827     border-width: 2px;
1828     }
1829     #cssom
1830     | <p>
1831     | border: 2px solid red
1832     | border-bottom: 2px solid red
1833     | border-bottom-color: red
1834     | border-bottom-style: solid
1835     | border-bottom-width: 2px
1836     | border-color: red
1837     | border-left: 2px solid red
1838     | border-left-color: red
1839     | border-left-style: solid
1840     | border-left-width: 2px
1841     | border-right: 2px solid red
1842     | border-right-color: red
1843     | border-right-style: solid
1844     | border-right-width: 2px
1845     | border-style: solid
1846     | border-top: 2px solid red
1847     | border-top-color: red
1848     | border-top-style: solid
1849     | border-top-width: 2px
1850     | border-width: 2px
1851     #csstext
1852     p {
1853     border: 2px solid red;
1854     }
1855 wakaba 1.5
1856     #data
1857     p {
1858     border: 1px solid red;
1859     border-width: 2px;
1860     border-top-color: green ! important;
1861     }
1862     #cssom
1863     | <p>
1864     | border-bottom: 2px solid red
1865     | border-bottom-color: red
1866     | border-bottom-style: solid
1867     | border-bottom-width: 2px
1868     | border-left: 2px solid red
1869     | border-left-color: red
1870     | border-left-style: solid
1871     | border-left-width: 2px
1872     | border-right: 2px solid red
1873     | border-right-color: red
1874     | border-right-style: solid
1875     | border-right-width: 2px
1876     | border-style: solid
1877     | border-top-color: green !important
1878     | border-top-style: solid
1879     | border-top-width: 2px
1880     | border-width: 2px
1881     #csstext
1882     p {
1883     border-bottom: 2px solid red;
1884     border-left: 2px solid red;
1885     border-right: 2px solid red;
1886     border-top-color: green ! important;
1887     border-top-style: solid;
1888     border-top-width: 2px;
1889     }
1890    
1891     #data
1892     p {
1893     border: inherit;
1894     }
1895     #cssom
1896     | <p>
1897     | border: inherit
1898     | border-bottom: inherit
1899     | border-bottom-color: inherit
1900     | border-bottom-style: inherit
1901     | border-bottom-width: inherit
1902     | border-color: inherit
1903     | border-left: inherit
1904     | border-left-color: inherit
1905     | border-left-style: inherit
1906     | border-left-width: inherit
1907     | border-right: inherit
1908     | border-right-color: inherit
1909     | border-right-style: inherit
1910     | border-right-width: inherit
1911     | border-style: inherit
1912     | border-top: inherit
1913     | border-top-color: inherit
1914     | border-top-style: inherit
1915     | border-top-width: inherit
1916     | border-width: inherit
1917 wakaba 1.3
1918     #data
1919 wakaba 1.8 p {
1920     padding-top: 0;
1921     }
1922     #cssom
1923     | <p>
1924     | padding-top: 0px
1925 wakaba 1.3
1926     #data
1927     p {
1928 wakaba 1.8 padding-top: +0;
1929 wakaba 1.3 }
1930     #cssom
1931     | <p>
1932 wakaba 1.8 | padding-top: 0px
1933    
1934     #data
1935 wakaba 1.3 p {
1936 wakaba 1.8 padding-top: -0;
1937 wakaba 1.3 }
1938 wakaba 1.8 #cssom
1939     | <p>
1940     | padding-top: 0px
1941 wakaba 1.3
1942     #data
1943     p {
1944 wakaba 1.8 padding-top: 000.000;
1945     }
1946     #cssom
1947     | <p>
1948     | padding-top: 0px
1949    
1950     #data
1951     p {
1952     padding-top: 12px;
1953     }
1954     #cssom
1955     | <p>
1956     | padding-top: 12px
1957     #csstext
1958     p {
1959     padding-top: 12px;
1960     }
1961    
1962     #data
1963     p {
1964     padding-top: +12px;
1965     }
1966     #cssom
1967     | <p>
1968     | padding-top: 12px
1969    
1970     #data
1971     p {
1972     padding-top: -12px;
1973     }
1974     #errors
1975     ;2;17;m;syntax error:'padding-top'
1976     #cssom
1977     | <p>
1978    
1979     #data
1980     p {
1981     padding-top: 0000120.00100px;
1982     }
1983     #cssom
1984     | <p>
1985     | padding-top: 120.001px
1986    
1987     #data
1988     p {
1989     padding: 1px 2px 3px 4px;
1990     }
1991     #cssom
1992     | <p>
1993     | padding: 1px 2px 3px 4px
1994     | padding-bottom: 3px
1995     | padding-left: 4px
1996     | padding-right: 2px
1997     | padding-top: 1px
1998     #csstext
1999     p {
2000     padding: 1px 2px 3px 4px;
2001     }
2002    
2003     #data
2004     p {
2005     padding: 1px 2px 3px 4px !important;
2006 wakaba 1.3 }
2007     #cssom
2008     | <p>
2009     | padding: 1px 2px 3px 4px !important
2010     | padding-bottom: 3px !important
2011     | padding-left: 4px !important
2012     | padding-right: 2px !important
2013     | padding-top: 1px !important
2014     #csstext
2015     p {
2016     padding: 1px 2px 3px 4px ! important;
2017     }
2018    
2019     #data
2020     p {
2021     padding: 1px 2px 3px;
2022     }
2023     #cssom
2024     | <p>
2025     | padding: 1px 2px 3px
2026     | padding-bottom: 3px
2027     | padding-left: 2px
2028     | padding-right: 2px
2029     | padding-top: 1px
2030     #csstext
2031     p {
2032     padding: 1px 2px 3px;
2033     }
2034    
2035     #data
2036     p {
2037     padding: 1px 2px 1px 2px;
2038     }
2039     #cssom
2040     | <p>
2041     | padding: 1px 2px
2042     | padding-bottom: 1px
2043     | padding-left: 2px
2044     | padding-right: 2px
2045     | padding-top: 1px
2046     #csstext
2047     p {
2048     padding: 1px 2px;
2049     }
2050    
2051     #data
2052     p {
2053     padding: 1px;
2054     }
2055     #cssom
2056     | <p>
2057     | padding: 1px
2058     | padding-bottom: 1px
2059     | padding-left: 1px
2060     | padding-right: 1px
2061     | padding-top: 1px
2062     #csstext
2063     p {
2064     padding: 1px;
2065     }
2066    
2067     #data
2068     p {
2069     padding: 1px;
2070     padding-top: 1px ! important;
2071     }
2072     #cssom
2073     | <p>
2074     | padding-bottom: 1px
2075     | padding-left: 1px
2076     | padding-right: 1px
2077     | padding-top: 1px !important
2078     #csstext
2079     p {
2080     padding-bottom: 1px;
2081     padding-left: 1px;
2082     padding-right: 1px;
2083     padding-top: 1px ! important;
2084     }
2085    
2086     #data
2087     p {
2088     display: inline;
2089     }
2090     #cssom
2091     | <p>
2092     | display: inline
2093     #csstext
2094     p {
2095     display: inline;
2096     }
2097     #computed 1 p
2098     #computedtext 1 p
2099    
2100     #data
2101     p {
2102     display: block;
2103     }
2104     #cssom
2105     | <p>
2106     | display: block
2107     #csstext
2108     p {
2109     display: block;
2110     }
2111     #computed 1 p
2112     -| display: inline
2113     +| display: block
2114     #computedtext 1 p
2115     - display: inline;
2116     + display: block;
2117    
2118     #data
2119     p {
2120     display: inherit;
2121     }
2122     #cssom
2123     | <p>
2124     | display: inherit
2125     #csstext
2126     p {
2127     display: inherit;
2128     }
2129     #computed 1 p
2130     #computedtext 1 p
2131    
2132     #data
2133     html {
2134     display: inline;
2135     }
2136     #cssom
2137     | <html>
2138     | display: inline
2139     #csstext
2140     html {
2141     display: inline;
2142     }
2143     #computed 1 html
2144     -| display: inline
2145     +| display: block
2146     #computedtext 1 html
2147     - display: inline;
2148     + display: block;
2149    
2150     #data
2151     html {
2152     display: inherit;
2153     }
2154     #cssom
2155     | <html>
2156     | display: inherit
2157     #csstext
2158     html {
2159     display: inherit;
2160     }
2161     #computed 1 html
2162     -| display: inline
2163     +| display: block
2164     #computedtext 1 html
2165     - display: inline;
2166     + display: block;
2167 wakaba 1.8
2168     #data
2169     p {
2170 wakaba 1.13 display: compact;
2171     }
2172     #cssom
2173     | <p>
2174     | display: compact
2175     #csstext
2176     p {
2177     display: compact;
2178     }
2179    
2180     #data
2181     p {
2182     display: marker;
2183     }
2184     #cssom
2185     | <p>
2186     | display: marker
2187     #csstext
2188     p {
2189     display: marker;
2190     }
2191     #computed 1 p
2192     #computedtext 1 p
2193    
2194     #data
2195     p {
2196 wakaba 1.8 top: 12px;
2197     }
2198     #cssom
2199     | <p>
2200     | top: 12px
2201    
2202     #data
2203     p {
2204     top: +12px;
2205     }
2206     #cssom
2207     | <p>
2208     | top: 12px
2209    
2210     #data
2211     p {
2212     top: -12px;
2213     }
2214     #cssom
2215     | <p>
2216     | top: -12px
2217    
2218     #data
2219     p {
2220     top: auto;
2221     }
2222     #cssom
2223     | <p>
2224     | top: auto
2225    
2226     #data
2227     p {
2228     top: inherit;
2229     }
2230     #cssom
2231     | <p>
2232     | top: inherit
2233    
2234     #data
2235     p {
2236     bottom: 12px;
2237     }
2238     #cssom
2239     | <p>
2240     | bottom: 12px
2241    
2242     #data
2243     p {
2244     bottom: +12px;
2245     }
2246     #cssom
2247     | <p>
2248     | bottom: 12px
2249    
2250     #data
2251     p {
2252     bottom: -12px;
2253     }
2254     #cssom
2255     | <p>
2256     | bottom: -12px
2257    
2258     #data
2259     p {
2260     bottom: auto;
2261     }
2262     #cssom
2263     | <p>
2264     | bottom: auto
2265    
2266     #data
2267     p {
2268     bottom: inherit;
2269     }
2270     #cssom
2271     | <p>
2272     | bottom: inherit
2273    
2274     #data
2275     p {
2276     left: 12px;
2277     }
2278     #cssom
2279     | <p>
2280     | left: 12px
2281    
2282     #data
2283     p {
2284     left: +12px;
2285     }
2286     #cssom
2287     | <p>
2288     | left: 12px
2289    
2290     #data
2291     p {
2292     left: -12px;
2293     }
2294     #cssom
2295     | <p>
2296     | left: -12px
2297    
2298     #data
2299     p {
2300     left: auto;
2301     }
2302     #cssom
2303     | <p>
2304     | left: auto
2305    
2306     #data
2307     p {
2308     left: inherit;
2309     }
2310     #cssom
2311     | <p>
2312     | left: inherit
2313    
2314     #data
2315     p {
2316     right: 12px;
2317     }
2318     #cssom
2319     | <p>
2320     | right: 12px
2321    
2322     #data
2323     p {
2324     right: +12px;
2325     }
2326     #cssom
2327     | <p>
2328     | right: 12px
2329    
2330     #data
2331     p {
2332     right: -12px;
2333     }
2334     #cssom
2335     | <p>
2336     | right: -12px
2337    
2338     #data
2339     p {
2340     right: auto;
2341     }
2342     #cssom
2343     | <p>
2344     | right: auto
2345    
2346     #data
2347     p {
2348     right: inherit;
2349     }
2350     #cssom
2351     | <p>
2352     | right: inherit
2353    
2354     #data
2355     /* From CSS 2.1 */
2356     BODY { height: 8.5in } /* Required for percentage heights below */
2357     #header {
2358     position: fixed;
2359     width: 100%;
2360     height: 15%;
2361     top: 0;
2362     right: 0;
2363     bottom: auto;
2364     left: 0;
2365     }
2366     #sidebar {
2367     position: fixed;
2368     width: 10em;
2369     height: auto;
2370     top: 15%;
2371     right: auto;
2372     bottom: 100px;
2373     left: 0;
2374     }
2375     #main {
2376     position: fixed;
2377     width: auto;
2378     height: auto;
2379     top: 15%;
2380     right: 0;
2381     bottom: 100px;
2382     left: 10em;
2383     }
2384     #footer {
2385     position: fixed;
2386     width: 100%;
2387     height: 100px;
2388     top: auto;
2389     right: 0;
2390     bottom: 0;
2391     left: 0;
2392     }
2393     #cssom
2394     | <BODY>
2395     | height: 8.5in
2396     | <#header>
2397     | bottom: auto
2398     | height: 15%
2399     | left: 0px
2400     | position: fixed
2401     | right: 0px
2402     | top: 0px
2403     | width: 100%
2404     | <#sidebar>
2405     | bottom: 100px
2406     | height: auto
2407     | left: 0px
2408     | position: fixed
2409     | right: auto
2410     | top: 15%
2411     | width: 10em
2412     | <#main>
2413     | bottom: 100px
2414     | height: auto
2415     | left: 10em
2416     | position: fixed
2417     | right: 0px
2418     | top: 15%
2419     | width: auto
2420     | <#footer>
2421     | bottom: 0px
2422     | height: 100px
2423     | left: 0px
2424     | position: fixed
2425     | right: 0px
2426     | top: auto
2427     | width: 100%
2428    
2429     #data
2430     p {
2431     z-index: 10;
2432     }
2433     #cssom
2434     | <p>
2435     | z-index: 10
2436    
2437     #data
2438     p {
2439     z-index: +10;
2440     }
2441     #cssom
2442     | <p>
2443     | z-index: 10
2444    
2445     #data
2446     p {
2447     z-index: -10;
2448     }
2449     #cssom
2450     | <p>
2451     | z-index: -10
2452    
2453     #data
2454     p {
2455     z-index: auto;
2456     }
2457     #cssom
2458     | <p>
2459     | z-index: auto
2460    
2461     #data
2462     p {
2463     z-index: inherit;
2464     }
2465     #cssom
2466     | <p>
2467     | z-index: inherit
2468    
2469     #data
2470     p {
2471     z-index: +inherit;
2472     }
2473     #errors
2474     ;2;13;m;syntax error:'z-index'
2475     #cssom
2476     | <p>
2477    
2478     #data
2479     p {
2480     width: 62px;
2481     }
2482     #cssom
2483     | <p>
2484     | width: 62px
2485    
2486     #data
2487     p {
2488     width: +62px;
2489     }
2490     #cssom
2491     | <p>
2492     | width: 62px
2493    
2494     #data
2495     p {
2496     width: -62px;
2497     }
2498     #errors
2499     ;2;11;m;syntax error:'width'
2500     #cssom
2501     | <p>
2502    
2503     #data
2504     p {
2505     width: 62%;
2506     }
2507     #cssom
2508     | <p>
2509     | width: 62%
2510    
2511     #data
2512     p {
2513     width: auto;
2514     }
2515     #cssom
2516     | <p>
2517     | width: auto
2518    
2519     #data
2520     p {
2521     width: none;
2522     }
2523     #errors
2524     ;2;10;m;syntax error:'width'
2525     #cssom
2526     | <p>
2527    
2528     #data
2529     p {
2530     width: inherit
2531     }
2532     #cssom
2533     | <p>
2534     | width: inherit
2535    
2536     #data
2537     p {
2538     min-width: 62px;
2539     }
2540     #cssom
2541     | <p>
2542     | min-width: 62px
2543    
2544     #data
2545     p {
2546     min-width: +62px;
2547     }
2548     #cssom
2549     | <p>
2550     | min-width: 62px
2551    
2552     #data
2553     p {
2554     min-width: -62px;
2555     }
2556     #errors
2557     ;2;15;m;syntax error:'min-width'
2558     #cssom
2559     | <p>
2560    
2561     #data
2562     p {
2563     min-width: 62%;
2564     }
2565     #cssom
2566     | <p>
2567     | min-width: 62%
2568    
2569     #data
2570     p {
2571     min-width: auto;
2572     }
2573     #errors
2574     ;2;14;m;syntax error:'min-width'
2575     #cssom
2576     | <p>
2577    
2578     #data
2579     p {
2580     min-width: none;
2581     }
2582     #errors
2583     ;2;14;m;syntax error:'min-width'
2584     #cssom
2585     | <p>
2586    
2587     #data
2588     p {
2589     min-width: inherit
2590     }
2591     #cssom
2592     | <p>
2593     | min-width: inherit
2594    
2595     #data
2596     p {
2597     max-width: 62px;
2598     }
2599     #cssom
2600     | <p>
2601     | max-width: 62px
2602    
2603     #data
2604     p {
2605     max-width: +62px;
2606     }
2607     #cssom
2608     | <p>
2609     | max-width: 62px
2610    
2611     #data
2612     p {
2613     max-width: -62px;
2614     }
2615     #errors
2616     ;2;15;m;syntax error:'max-width'
2617     #cssom
2618     | <p>
2619    
2620     #data
2621     p {
2622     max-width: 62%;
2623     }
2624     #cssom
2625     | <p>
2626     | max-width: 62%
2627    
2628     #data
2629     p {
2630     max-width: auto;
2631     }
2632     #errors
2633     ;2;14;m;syntax error:'max-width'
2634     #cssom
2635     | <p>
2636    
2637     #data
2638     p {
2639     max-width: none
2640     }
2641     #cssom
2642     | <p>
2643     | max-width: none
2644    
2645     #data
2646     p {
2647     max-width: inherit
2648     }
2649     #cssom
2650     | <p>
2651     | max-width: inherit
2652    
2653     #data
2654     p {
2655     height: 62px;
2656     }
2657     #cssom
2658     | <p>
2659     | height: 62px
2660    
2661     #data
2662     p {
2663     height: +62px;
2664     }
2665     #cssom
2666     | <p>
2667     | height: 62px
2668    
2669     #data
2670     p {
2671     height: -62px;
2672     }
2673     #errors
2674     ;2;12;m;syntax error:'height'
2675     #cssom
2676     | <p>
2677    
2678     #data
2679     p {
2680     height: 62%;
2681     }
2682     #cssom
2683     | <p>
2684     | height: 62%
2685    
2686     #data
2687     p {
2688     height: auto;
2689     }
2690     #cssom
2691     | <p>
2692     | height: auto
2693    
2694     #data
2695     p {
2696     height: none;
2697     }
2698     #errors
2699     ;2;11;m;syntax error:'height'
2700     #cssom
2701     | <p>
2702    
2703     #data
2704     p {
2705     height: inherit
2706     }
2707     #cssom
2708     | <p>
2709     | height: inherit
2710    
2711     #data
2712     p {
2713     min-height: 62px;
2714     }
2715     #cssom
2716     | <p>
2717     | min-height: 62px
2718    
2719     #data
2720     p {
2721     min-height: +62px;
2722     }
2723     #cssom
2724     | <p>
2725     | min-height: 62px
2726    
2727     #data
2728     p {
2729     min-height: -62px;
2730     }
2731     #errors
2732     ;2;16;m;syntax error:'min-height'
2733     #cssom
2734     | <p>
2735    
2736     #data
2737     p {
2738     min-height: 62%;
2739     }
2740     #cssom
2741     | <p>
2742     | min-height: 62%
2743    
2744     #data
2745     p {
2746     min-height: auto;
2747     }
2748     #errors
2749     ;2;15;m;syntax error:'min-height'
2750     #cssom
2751     | <p>
2752    
2753     #data
2754     p {
2755     min-height: none;
2756     }
2757     #errors
2758     ;2;15;m;syntax error:'min-height'
2759     #cssom
2760     | <p>
2761    
2762     #data
2763     p {
2764     min-height: inherit
2765     }
2766     #cssom
2767     | <p>
2768     | min-height: inherit
2769    
2770     #data
2771     p {
2772     max-height: 62px;
2773     }
2774     #cssom
2775     | <p>
2776     | max-height: 62px
2777    
2778     #data
2779     p {
2780     max-height: +62px;
2781     }
2782     #cssom
2783     | <p>
2784     | max-height: 62px
2785    
2786     #data
2787     p {
2788     max-height: -62px;
2789     }
2790     #errors
2791     ;2;16;m;syntax error:'max-height'
2792     #cssom
2793     | <p>
2794    
2795     #data
2796     p {
2797     max-height: 62%;
2798     }
2799     #cssom
2800     | <p>
2801     | max-height: 62%
2802    
2803     #data
2804     p {
2805     max-height: auto;
2806     }
2807     #errors
2808     ;2;15;m;syntax error:'max-height'
2809     #cssom
2810     | <p>
2811    
2812     #data
2813     p {
2814     max-height: none
2815     }
2816     #cssom
2817     | <p>
2818     | max-height: none
2819    
2820     #data
2821     p {
2822     max-height: inherit
2823     }
2824     #cssom
2825     | <p>
2826     | max-height: inherit
2827    
2828     #data
2829     p {
2830     line-height: normal;
2831     }
2832     #cssom
2833     | <p>
2834     | line-height: normal
2835    
2836     #data
2837     p {
2838     line-height: 12px;
2839     }
2840     #cssom
2841     | <p>
2842     | line-height: 12px
2843    
2844     #data
2845     p {
2846     line-height: +12px
2847     }
2848     #cssom
2849     | <p>
2850     | line-height: 12px
2851    
2852     #data
2853     p {
2854     line-height: -12px
2855     }
2856     #errors
2857     ;2;17;m;syntax error:'line-height'
2858     #cssom
2859     | <p>
2860    
2861     #data
2862     p {
2863     line-height: 12%
2864     }
2865     #cssom
2866     | <p>
2867     | line-height: 12%
2868    
2869     #data
2870     p {
2871     line-height: +12%
2872     }
2873     #cssom
2874     | <p>
2875     | line-height: 12%
2876    
2877     #data
2878     p {
2879     line-height: -123%
2880     }
2881     #errors
2882     ;2;17;m;syntax error:'line-height'
2883     #cssom
2884     | <p>
2885    
2886     #data
2887     p {
2888     line-height: 12
2889     }
2890     #cssom
2891     | <p>
2892     | line-height: 12
2893    
2894     #data
2895     p {
2896     line-height: 12
2897     }
2898     #option q
2899     #cssom
2900     | <p>
2901     | line-height: 12
2902    
2903     #data
2904     p {
2905     line-height: +12
2906     }
2907     #cssom
2908     | <p>
2909     | line-height: 12
2910    
2911     #data
2912     p {
2913     line-height: -12
2914     }
2915     #errors
2916     ;2;17;m;syntax error:'line-height'
2917     #cssom
2918     | <p>
2919    
2920     #data
2921     p {
2922     line-height: 0
2923     }
2924     #cssom
2925     | <p>
2926     | line-height: 0
2927    
2928     #data
2929     p {
2930     line-height: +0
2931     }
2932     #cssom
2933     | <p>
2934     | line-height: 0
2935    
2936     #data
2937     p {
2938     line-height: -0
2939     }
2940     #cssom
2941     | <p>
2942     | line-height: 0
2943    
2944     #data
2945     p {
2946     vertical-align: baseline;
2947     }
2948     #cssom
2949     | <p>
2950     | vertical-align: baseline
2951    
2952     #data
2953     p {
2954     vertical-align: sub;
2955     }
2956     #cssom
2957     | <p>
2958     | vertical-align: sub
2959    
2960     #data
2961     p {
2962     vertical-align: super;
2963     }
2964     #cssom
2965     | <p>
2966     | vertical-align: super
2967    
2968     #data
2969     p {
2970     vertical-align: sup;
2971     }
2972     #errors
2973     ;2;19;m;syntax error:'vertical-align'
2974     #cssom
2975     | <p>
2976    
2977     #data
2978     p {
2979     vertical-align: top;
2980     }
2981     #cssom
2982     | <p>
2983     | vertical-align: top
2984    
2985     #data
2986     p {
2987     vertical-align: text-top;
2988     }
2989     #cssom
2990     | <p>
2991     | vertical-align: text-top
2992    
2993     #data
2994     p {
2995     vertical-align: middle;
2996     }
2997     #cssom
2998     | <p>
2999     | vertical-align: middle
3000    
3001     #data
3002     p {
3003     vertical-align: normal;
3004     }
3005     #errors
3006     ;2;19;m;syntax error:'vertical-align'
3007     #cssom
3008     | <p>
3009    
3010     #data
3011     p {
3012     vertical-align: bottom;
3013     }
3014     #cssom
3015     | <p>
3016     | vertical-align: bottom
3017    
3018     #data
3019     p {
3020     vertical-align: text-bottom;
3021     }
3022     #cssom
3023     | <p>
3024     | vertical-align: text-bottom
3025    
3026     #data
3027     p {
3028     vertical-align: 12%;
3029     }
3030     #cssom
3031     | <p>
3032     | vertical-align: 12%
3033    
3034     #data
3035     p {
3036     vertical-align: +12%;
3037     }
3038     #cssom
3039     | <p>
3040     | vertical-align: 12%
3041    
3042     #data
3043     p {
3044     vertical-align: -12%;
3045     }
3046     #cssom
3047     | <p>
3048     | vertical-align: -12%
3049    
3050     #data
3051     p {
3052     vertical-align: 10em;
3053     }
3054     #cssom
3055     | <p>
3056     | vertical-align: 10em
3057    
3058     #data
3059     p {
3060     vertical-align: +0000010em;
3061     }
3062     #cssom
3063     | <p>
3064     | vertical-align: 10em
3065    
3066     #data
3067     p {
3068     vertical-align: -00012.00000px;
3069     }
3070     #cssom
3071     | <p>
3072     | vertical-align: -12px
3073    
3074     #data
3075     p {
3076     vertical-align: inherit;
3077     }
3078     #cssom
3079     | <p>
3080     | vertical-align: inherit
3081 wakaba 1.3
3082 wakaba 1.6 #data
3083     p {
3084 wakaba 1.11 overflow: scroll;
3085     }
3086     #cssom
3087     | <p>
3088     | overflow: scroll
3089     | overflow-x: scroll
3090     | overflow-y: scroll
3091     #csstext
3092     p {
3093     overflow: scroll;
3094     }
3095    
3096     #data
3097     p {
3098     overflow: auto;
3099     }
3100     #cssom
3101     | <p>
3102     | overflow: auto
3103     | overflow-x: auto
3104     | overflow-y: auto
3105     #csstext
3106     p {
3107     overflow: auto;
3108     }
3109    
3110     #data
3111     p {
3112     overflow: hidden;
3113     }
3114     #cssom
3115     | <p>
3116     | overflow: hidden
3117     | overflow-x: hidden
3118     | overflow-y: hidden
3119     #csstext
3120     p {
3121     overflow: hidden;
3122     }
3123    
3124     #data
3125     p {
3126     overflow: visible;
3127     }
3128     #cssom
3129     | <p>
3130     | overflow: visible
3131     | overflow-x: visible
3132     | overflow-y: visible
3133     #csstext
3134     p {
3135     overflow: visible;
3136     }
3137    
3138     #data
3139     p {
3140     overflow: -moz-hidden-unscrollable;
3141     }
3142     #cssom
3143     | <p>
3144     | overflow: -moz-hidden-unscrollable
3145     | overflow-x: -moz-hidden-unscrollable
3146     | overflow-y: -moz-hidden-unscrollable
3147     #csstext
3148     p {
3149     overflow: -moz-hidden-unscrollable;
3150     }
3151    
3152     #data
3153     p {
3154     overflow: -webkit-marquee;
3155     }
3156     #cssom
3157     | <p>
3158     | overflow: -webkit-marquee
3159     | overflow-x: -webkit-marquee
3160     | overflow-y: -webkit-marquee
3161     #csstext
3162     p {
3163     overflow: -webkit-marquee;
3164     }
3165    
3166     #data
3167     p {
3168     overflow: inherit;
3169     }
3170     #cssom
3171     | <p>
3172     | overflow: inherit
3173     | overflow-x: inherit
3174     | overflow-y: inherit
3175     #csstext
3176     p {
3177     overflow: inherit;
3178     }
3179    
3180     #data
3181     p {
3182     overflow-x: scroll;
3183     overflow-y: auto;
3184     }
3185     #cssom
3186     | <p>
3187     | overflow-x: scroll
3188     | overflow-y: auto
3189     #csstext
3190     p {
3191     overflow-x: scroll;
3192     overflow-y: auto;
3193     }
3194    
3195     #data
3196     p {
3197     overflow-x: auto ! important;
3198     overflow-y: auto;
3199     }
3200     #cssom
3201     | <p>
3202     | overflow-x: auto !important
3203     | overflow-y: auto
3204     #csstext
3205     p {
3206     overflow-x: auto ! important;
3207     overflow-y: auto;
3208     }
3209    
3210     #data
3211     p {
3212     overflow-y: auto ! important;
3213     overflow-x: auto;
3214     }
3215     #cssom
3216     | <p>
3217     | overflow-x: auto
3218     | overflow-y: auto !important
3219     #csstext
3220     p {
3221     overflow-x: auto;
3222     overflow-y: auto ! important;
3223     }
3224    
3225     #data
3226     p {
3227     overflow-x: inherit;
3228     overflow-y: auto;
3229     }
3230     #cssom
3231     | <p>
3232     | overflow-x: inherit
3233     | overflow-y: auto
3234     #csstext
3235     p {
3236     overflow-x: inherit;
3237     overflow-y: auto;
3238     }
3239    
3240     #data
3241     p {
3242     overflow-x: auto;
3243     overflow-y: inherit;
3244     }
3245     #cssom
3246     | <p>
3247     | overflow-x: auto
3248     | overflow-y: inherit
3249     #csstext
3250     p {
3251     overflow-x: auto;
3252     overflow-y: inherit;
3253     }
3254    
3255     #data
3256     p {
3257     overflow-x: -moz-hidden-unscrollable;
3258     }
3259     #cssom
3260     | <p>
3261     | overflow-x: -moz-hidden-unscrollable
3262     #csstext
3263     p {
3264     overflow-x: -moz-hidden-unscrollable;
3265     }
3266    
3267     #data
3268     p {
3269     overflow-y: -webkit-marquee;
3270     }
3271     #cssom
3272     | <p>
3273     | overflow-y: -webkit-marquee
3274     #csstext
3275     p {
3276     overflow-y: -webkit-marquee;
3277     }
3278    
3279     #data
3280     p {
3281 wakaba 1.12 clip: inherit;
3282     }
3283     #cssom
3284     | <p>
3285     | clip: inherit
3286     #csstext
3287     p {
3288     clip: inherit;
3289     }
3290     #computed 1 p
3291     #computedtext 1 p
3292    
3293     #data
3294     p {
3295     clip: auto;
3296     }
3297     #cssom
3298     | <p>
3299     | clip: auto
3300     #csstext
3301     p {
3302     clip: auto;
3303     }
3304    
3305     #data
3306     p {
3307     clip: rect();
3308     }
3309     #errors
3310     ;2;14;m;syntax error:'clip'
3311     #cssom
3312     | <p>
3313    
3314     #data
3315     p {
3316     clip: rect(1px);
3317     }
3318     #errors
3319     ;2;17;m;syntax error:'clip'
3320     #cssom
3321     | <p>
3322    
3323     #data
3324     p {
3325     clip: rect(1px,2px);
3326     }
3327     #errors
3328     ;2;21;m;syntax error:'clip'
3329     #cssom
3330     | <p>
3331    
3332     #data
3333     p {
3334     clip: rect(1px, 2px,3px);
3335     }
3336     #errors
3337     ;2;26;m;syntax error:'clip'
3338     #cssom
3339     | <p>
3340    
3341     #data
3342     p {
3343     clip: rect(1px, 2px, 3px, 4px
3344     }
3345     #errors
3346     ;3;1;m;syntax error:'clip'
3347     #cssom
3348     | <p>
3349    
3350     #data
3351     p {
3352     clip: rect(0, 0, 0, 0)
3353     }
3354     #cssom
3355     | <p>
3356     | clip: rect(0px, 0px, 0px, 0px)
3357    
3358     #data
3359     p {
3360     clip: rect(1 1 1 1);
3361     }
3362     #errors
3363     ;2;14;m;syntax error:'clip'
3364     #cssom
3365     | <p>
3366    
3367     #data
3368     p {
3369     clip: rect(1 1 1 1)
3370     }
3371     #option q
3372     #cssom
3373     | <p>
3374     | clip: rect(1px, 1px, 1px, 1px)
3375    
3376     #data
3377     p {
3378     clip: rect(0 0 0 12)
3379     }
3380     #errors
3381     ;2;20;m;syntax error:'clip'
3382     #cssom
3383     | <p>
3384    
3385     #data
3386     p {
3387     clip: rect(0 0 0 12)
3388     }
3389     #option q
3390     #cssom
3391     | <p>
3392     | clip: rect(0px, 0px, 0px, 12px)
3393    
3394     #data
3395     p {
3396     clip: rect(1px 3px 2px 4px)
3397     }
3398     #cssom
3399     | <p>
3400     | clip: rect(1px, 3px, 2px, 4px)
3401    
3402     #data
3403     p {
3404     clip: rect(1px 3px 3px, 12px)
3405     }
3406     #cssom
3407     | <p>
3408     | clip: rect(1px, 3px, 3px, 12px)
3409    
3410     #data
3411     p {
3412     clip: rect(1px, 2px ,3px, 4px);
3413     }
3414     #cssom
3415     | <p>
3416     | clip: rect(1px, 2px, 3px, 4px)
3417     #csstext
3418     p {
3419     clip: rect(1px, 2px, 3px, 4px);
3420     }
3421     #computed 1 p
3422     -| clip: auto
3423     +| clip: rect(1px, 2px, 3px, 4px)
3424    
3425     #data
3426     p {
3427     clip: rect(+1px, +2px, +3px, +34px)
3428     }
3429     #cssom
3430     | <p>
3431     | clip: rect(1px, 2px, 3px, 34px)
3432    
3433     #data
3434     p {
3435     clip: rect(-1px, -0023.012px, -.4400em, -0.004400in);
3436     }
3437     #cssom
3438     | <p>
3439     | clip: rect(-1px, -23.012px, -0.44em, -0.0044in)
3440    
3441     #data
3442     p {
3443     clip: rect(1px, 2% 4em 6cm);
3444     }
3445     #errors
3446     ;2;19;m;syntax error:'clip'
3447     #cssom
3448     | <p>
3449    
3450     #data
3451     p {
3452     clip: rect(1px auto 3px, auto);
3453     }
3454     #cssom
3455     | <p>
3456     | clip: rect(1px, auto, 3px, auto)
3457    
3458     #data
3459     p {
3460     clip: rect(auto, auto, auto, auto)
3461     }
3462     #cssom
3463     | <p>
3464     | clip: rect(auto, auto, auto, auto)
3465     #csstext
3466     p {
3467     clip: rect(auto, auto, auto, auto);
3468     }
3469     #computed 1 p
3470     -| clip: auto
3471     +| clip: rect(auto, auto, auto, auto)
3472    
3473     #data
3474     p {
3475     clip: rect(inherit, 1px, auto, 2px);
3476     }
3477     #errors
3478     ;2;14;m;syntax error:'clip'
3479    
3480     #data
3481     p {
3482     clip: rect(1px, 2px, 3px, 4px );
3483     }
3484     #cssom
3485     | <p>
3486     | clip: rect(1px, 2px, 3px, 4px)
3487    
3488     #data
3489     p {
3490     clip: rect(1px, 2px, 3px, 4px 5px);
3491     }
3492     #errors
3493     ;2;33;m;syntax error:'clip'
3494     #cssom
3495     | <p>
3496    
3497     #data
3498     p {
3499     clip: rect(1px, 2px, 3px, 4px,);
3500     }
3501     #errors
3502     ;2;32;m;syntax error:'clip'
3503     #cssom
3504     | <p>
3505    
3506     #data
3507     p {
3508     clip: rect(1px, 2px, 3px, 4px, 5px);
3509     }
3510     #errors
3511     ;2;32;m;syntax error:'clip'
3512     #cssom
3513     | <p>
3514    
3515     #data
3516     p {
3517 wakaba 1.6 background-position: inherit;
3518     }
3519     #cssom
3520     | <p>
3521     | background-position: inherit
3522     | background-position-x: inherit
3523     | background-position-y: inherit
3524     #csstext
3525     p {
3526     background-position: inherit;
3527     }
3528 wakaba 1.1
3529 wakaba 1.6 #data
3530     p {
3531     background-position-x: inherit;
3532     }
3533     #cssom
3534     | <p>
3535     | background-position-x: inherit
3536     #csstext
3537     p {
3538     background-position-x: inherit;
3539     }
3540 wakaba 1.1
3541 wakaba 1.6 #data
3542     p {
3543     background-position-x: inherit;
3544     background-position-y: inherit;
3545     }
3546     #cssom
3547     | <p>
3548     | background-position: inherit
3549     | background-position-x: inherit
3550     | background-position-y: inherit
3551     #csstext
3552     p {
3553     background-position: inherit;
3554     }
3555 wakaba 1.1
3556 wakaba 1.6 #data
3557     p {
3558     background-position-x: inherit;
3559     background-position-y: inherit !important;
3560     }
3561     #cssom
3562     | <p>
3563     | background-position-x: inherit
3564     | background-position-y: inherit !important
3565     #csstext
3566     p {
3567     background-position-x: inherit;
3568     background-position-y: inherit ! important;
3569     }
3570 wakaba 1.1
3571 wakaba 1.6 #data
3572     p {
3573     background-position-x: inherit;
3574     background-position-y: 50%;
3575     }
3576     #cssom
3577     | <p>
3578     | background-position-x: inherit
3579     | background-position-y: 50%
3580     #csstext
3581     p {
3582     background-position-x: inherit;
3583     background-position-y: 50%;
3584     }
3585 wakaba 1.1
3586 wakaba 1.6 #data
3587     p {
3588     background-position-x: 12.4%;
3589     background-position-y: inherit;
3590     }
3591     #cssom
3592     | <p>
3593     | background-position-x: 12.4%
3594     | background-position-y: inherit
3595     #csstext
3596     p {
3597     background-position-x: 12.4%;
3598     background-position-y: inherit;
3599     }
3600    
3601     #data
3602     p {
3603     background-position: 12.3% 3px;
3604     }
3605     #cssom
3606     | <p>
3607     | background-position: 12.3% 3px
3608     | background-position-x: 12.3%
3609     | background-position-y: 3px
3610     #csstext
3611     p {
3612     background-position: 12.3% 3px;
3613     }
3614    
3615     #data
3616     p {
3617     background-position-x: 12.3%;
3618     background-position-y: 3px ! important;
3619     }
3620     #cssom
3621     | <p>
3622     | background-position-x: 12.3%
3623     | background-position-y: 3px !important
3624     #csstext
3625     p {
3626     background-position-x: 12.3%;
3627     background-position-y: 3px ! important;
3628     }
3629    
3630     #data
3631     p {
3632     background-position-x: 12.3% ! important;
3633     background-position-y: 3px;
3634     }
3635     #cssom
3636     | <p>
3637     | background-position-x: 12.3% !important
3638     | background-position-y: 3px
3639     #csstext
3640     p {
3641     background-position-x: 12.3% ! important;
3642     background-position-y: 3px;
3643     }
3644    
3645     #data
3646     p {
3647     background-position-x: 12.3% !important;
3648     background-position-y: 3px ! important;
3649     }
3650     #cssom
3651     | <p>
3652     | background-position: 12.3% 3px !important
3653     | background-position-x: 12.3% !important
3654     | background-position-y: 3px !important
3655     #csstext
3656     p {
3657     background-position: 12.3% 3px ! important;
3658     }
3659    
3660     #data
3661     p {
3662 wakaba 1.9 background-position: +12px +34px;
3663     }
3664     #cssom
3665     | <p>
3666     | background-position: 12px 34px
3667     | background-position-x: 12px
3668     | background-position-y: 34px
3669    
3670     #data
3671     p {
3672     background-position: -12px -34px;
3673     }
3674     #cssom
3675     | <p>
3676     | background-position: -12px -34px
3677     | background-position-x: -12px
3678     | background-position-y: -34px
3679    
3680     #data
3681     p {
3682     background-position: left +34px;
3683     }
3684     #cssom
3685     | <p>
3686     | background-position: left 34px
3687     | background-position-x: left
3688     | background-position-y: 34px
3689    
3690     #data
3691     p {
3692     background-position: +12px bottom
3693     }
3694     #cssom
3695     | <p>
3696     | background-position: 12px bottom
3697     | background-position-x: 12px
3698     | background-position-y: bottom
3699    
3700     #data
3701     p {
3702     background-position: +12px
3703     }
3704     #cssom
3705     | <p>
3706     | background-position: 12px 50%
3707     | background-position-x: 12px
3708     | background-position-y: 50%
3709    
3710     #data
3711     p {
3712     background-position: +12px left;
3713     }
3714     #errors
3715     ;2;30;m;no property semicolon
3716     #cssom
3717     | <p>
3718    
3719     #data
3720     p {
3721     background-position: 12px +top;
3722     }
3723     #errors
3724     ;2;30;m;syntax error:'background-position'
3725     #cssom
3726     | <p>
3727    
3728     #data
3729     p {
3730 wakaba 1.14 background-position: top left;
3731     }
3732     #cssom
3733     | <p>
3734     | background-position: left top
3735     | background-position-x: left
3736     | background-position-y: top
3737    
3738     #data
3739     p {
3740     background-position: top right;
3741     }
3742     #cssom
3743     | <p>
3744     | background-position: right top
3745     | background-position-x: right
3746     | background-position-y: top
3747    
3748     #data
3749     p {
3750     background-position: bottom left;
3751     }
3752     #cssom
3753     | <p>
3754     | background-position: left bottom
3755     | background-position-x: left
3756     | background-position-y: bottom
3757    
3758     #data
3759     p {
3760     background-position: bottom right;
3761     }
3762     #cssom
3763     | <p>
3764     | background-position: right bottom
3765     | background-position-x: right
3766     | background-position-y: bottom
3767    
3768     #data
3769     p {
3770     background-position: center left;
3771     }
3772     #cssom
3773     | <p>
3774     | background-position: left center
3775     | background-position-x: left
3776     | background-position-y: center
3777    
3778     #data
3779     p {
3780     background-position: center right;
3781     }
3782     #cssom
3783     | <p>
3784     | background-position: right center
3785     | background-position-x: right
3786     | background-position-y: center
3787    
3788     #data
3789     p {
3790 wakaba 1.6 background:;
3791     }
3792     #errors
3793     ;2;14;m;syntax error:'background'
3794     #cssom
3795     | <p>
3796    
3797     #data
3798     p {
3799     background:
3800     #errors
3801     ;2;14;m;syntax error:'background'
3802     ;2;14;m;block not closed
3803     #cssom
3804     | <p>
3805    
3806     #data
3807     p {
3808     background: -;
3809     }
3810     #errors
3811     ;2;16;m;syntax error:'background'
3812     #cssom
3813     | <p>
3814    
3815     #data
3816     p {
3817     background: +;
3818     }
3819     #errors
3820     ;2;16;m;syntax error:'background'
3821     #cssom
3822     | <p>
3823    
3824     #data
3825     p {
3826     background: +
3827     #errors
3828     ;2;16;m;syntax error:'background'
3829     ;2;16;m;block not closed
3830     #cssom
3831     | <p>
3832    
3833     #data
3834     p {
3835     background: none;
3836     }
3837     #cssom
3838     | <p>
3839     | background: transparent none repeat scroll 0% 0%
3840     | background-attachment: scroll
3841     | background-color: transparent
3842     | background-image: none
3843     | background-position: 0% 0%
3844     | background-position-x: 0%
3845     | background-position-y: 0%
3846     | background-repeat: repeat
3847     #csstext
3848     p {
3849     background: transparent none repeat scroll 0% 0%;
3850     }
3851    
3852     #data
3853     p {
3854     background: url(bg);
3855     }
3856     #cssom
3857     | <p>
3858     | background: url(bg)
3859     | background-attachment: scroll
3860     | background-color: transparent
3861     | background-image: url(bg)
3862     | background-position: 0% 0%
3863     | background-position-x: 0%
3864     | background-position-y: 0%
3865     | background-repeat: repeat
3866     #csstext
3867     p {
3868     background: url(bg);
3869     }
3870     #computed 1 p
3871     -| background: transparent none repeat scroll 0% 0%
3872     +| background: url(thismessage:/bg)
3873     -| background-image: none
3874     +| background-image: url(thismessage:/bg)
3875    
3876     #data
3877     p {
3878     background: -url(bg);
3879     }
3880     #errors
3881     ;2;15;m;syntax error:'background'
3882     #cssom
3883     | <p>
3884    
3885     #data
3886     p {
3887     background: -/**/url(bg);
3888     }
3889     #errors
3890     ;2;20;m;syntax error:'background'
3891     #cssom
3892     | <p>
3893    
3894     #data
3895     p {
3896     background: +url(bg);
3897     }
3898     #errors
3899     ;2;16;m;syntax error:'background'
3900     #cssom
3901     | <p>
3902    
3903     #data
3904     p {
3905     background: 12% url(a);
3906     }
3907     #cssom
3908     | <p>
3909     | background: url(a) 12% 50%
3910     | background-attachment: scroll
3911     | background-color: transparent
3912     | background-image: url(a)
3913     | background-position: 12% 50%
3914     | background-position-x: 12%
3915     | background-position-y: 50%
3916     | background-repeat: repeat
3917    
3918     #data
3919     p {
3920     background: url(a) url(b);
3921     }
3922     #errors
3923     ;2;22;m;no property semicolon
3924     #cssom
3925     | <p>
3926    
3927     #data
3928     p {
3929     background: fixed center;
3930     }
3931     #cssom
3932     | <p>
3933     | background: fixed center center
3934     | background-attachment: fixed
3935     | background-color: transparent
3936     | background-image: none
3937     | background-position: center center
3938     | background-position-x: center
3939     | background-position-y: center
3940     | background-repeat: repeat
3941     #csstext
3942     p {
3943     background: fixed center center;
3944     }
3945    
3946     #data
3947     p {
3948     background: left;
3949     }
3950     #cssom
3951     | <p>
3952     | background: left center
3953     | background-attachment: scroll
3954     | background-color: transparent
3955     | background-image: none
3956     | background-position: left center
3957     | background-position-x: left
3958     | background-position-y: center
3959     | background-repeat: repeat
3960    
3961     #data
3962     p {
3963     background: left 1px;
3964     }
3965     #cssom
3966     | <p>
3967     | background: left 1px
3968     | background-attachment: scroll
3969     | background-color: transparent
3970     | background-image: none
3971     | background-position: left 1px
3972     | background-position-x: left
3973     | background-position-y: 1px
3974     | background-repeat: repeat
3975    
3976     #data
3977     p {
3978     background: left 1%;
3979     }
3980     #cssom
3981     | <p>
3982     | background: left 1%
3983     | background-attachment: scroll
3984     | background-color: transparent
3985     | background-image: none
3986     | background-position: left 1%
3987     | background-position-x: left
3988     | background-position-y: 1%
3989     | background-repeat: repeat
3990    
3991     #data
3992     p {
3993     background: left none;
3994     }
3995     #cssom
3996     | <p>
3997     | background: left center
3998     | background-attachment: scroll
3999     | background-color: transparent
4000     | background-image: none
4001     | background-position: left center
4002     | background-position-x: left
4003     | background-position-y: center
4004     | background-repeat: repeat
4005    
4006     #data
4007     p {
4008     background: left url(a);
4009     }
4010     #cssom
4011     | <p>
4012     | background: url(a) left center
4013     | background-attachment: scroll
4014     | background-color: transparent
4015     | background-image: url(a)
4016     | background-position: left center
4017     | background-position-x: left
4018     | background-position-y: center
4019     | background-repeat: repeat
4020    
4021     #data
4022     p {
4023     background: left -12px;
4024     }
4025     #cssom
4026     | <p>
4027     | background: left -12px
4028     | background-attachment: scroll
4029     | background-color: transparent
4030     | background-image: none
4031     | background-position: left -12px
4032     | background-position-x: left
4033     | background-position-y: -12px
4034     | background-repeat: repeat
4035    
4036     #data
4037     p {
4038     background: left +12px;
4039     }
4040     #cssom
4041     | <p>
4042     | background: left 12px
4043     | background-attachment: scroll
4044     | background-color: transparent
4045     | background-image: none
4046     | background-position: left 12px
4047     | background-position-x: left
4048     | background-position-y: 12px
4049     | background-repeat: repeat
4050    
4051     #data
4052     p {
4053     background: left +;
4054     }
4055     #errors
4056     ;2;21;m;syntax error:'background'
4057     #cssom
4058     | <p>
4059    
4060     #data
4061     p {
4062     background: left -;
4063     }
4064     #errors
4065     ;2;21;m;syntax error:'background'
4066     #cssom
4067     | <p>
4068    
4069     #data
4070     p {
4071     background: top left;
4072     }
4073     #cssom
4074     | <p>
4075     | background: left top
4076     | background-attachment: scroll
4077     | background-color: transparent
4078     | background-image: none
4079     | background-position: left top
4080     | background-position-x: left
4081     | background-position-y: top
4082     | background-repeat: repeat
4083    
4084     #data
4085     p {
4086     background: top center;
4087     }
4088     #cssom
4089     | <p>
4090     | background: center top
4091     | background-attachment: scroll
4092     | background-color: transparent
4093     | background-image: none
4094     | background-position: center top
4095     | background-position-x: center
4096     | background-position-y: top
4097     | background-repeat: repeat
4098    
4099     #data
4100     p {
4101     background: top right;
4102     }
4103     #cssom
4104     | <p>
4105     | background: right top
4106     | background-attachment: scroll
4107     | background-color: transparent
4108     | background-image: none
4109     | background-position: right top
4110     | background-position-x: right
4111     | background-position-y: top
4112     | background-repeat: repeat
4113    
4114     #data
4115     p {
4116     background: bottom left;
4117     }
4118     #cssom
4119     | <p>
4120     | background: left bottom
4121     | background-attachment: scroll
4122     | background-color: transparent
4123     | background-image: none
4124     | background-position: left bottom
4125     | background-position-x: left
4126     | background-position-y: bottom
4127     | background-repeat: repeat
4128    
4129     #data
4130     p {
4131     background: bottom center;
4132     }
4133     #cssom
4134     | <p>
4135     | background: center bottom
4136     | background-attachment: scroll
4137     | background-color: transparent
4138     | background-image: none
4139     | background-position: center bottom
4140     | background-position-x: center
4141     | background-position-y: bottom
4142     | background-repeat: repeat
4143    
4144     #data
4145     p {
4146     background: bottom right;
4147     }
4148     #cssom
4149     | <p>
4150     | background: right bottom
4151     | background-attachment: scroll
4152     | background-color: transparent
4153     | background-image: none
4154     | background-position: right bottom
4155     | background-position-x: right
4156     | background-position-y: bottom
4157 wakaba 1.14 | background-repeat: repeat
4158    
4159     #data
4160     p {
4161     background: center right;
4162     }
4163     #cssom
4164     | <p>
4165     | background: right center
4166     | background-attachment: scroll
4167     | background-color: transparent
4168     | background-image: none
4169     | background-position: right center
4170     | background-position-x: right
4171     | background-position-y: center
4172     | background-repeat: repeat
4173    
4174     #data
4175     p {
4176     background: center left;
4177     }
4178     #cssom
4179     | <p>
4180     | background: left center
4181     | background-attachment: scroll
4182     | background-color: transparent
4183     | background-image: none
4184     | background-position: left center
4185     | background-position-x: left
4186     | background-position-y: center
4187     | background-repeat: repeat
4188    
4189     #data
4190     p {
4191     background: center center;
4192     }
4193     #cssom
4194     | <p>
4195     | background: center center
4196     | background-attachment: scroll
4197     | background-color: transparent
4198     | background-image: none
4199     | background-position: center center
4200     | background-position-x: center
4201     | background-position-y: center
4202 wakaba 1.6 | background-repeat: repeat
4203    
4204     #data
4205     p {
4206     background: top -12px;
4207     }
4208     #errors
4209     ;2;20;m;syntax error:'background'
4210     #cssom
4211     | <p>
4212    
4213     #data
4214     p {
4215     background: top +12px;
4216     }
4217     #errors
4218     ;2;20;m;syntax error:'background'
4219     #cssom
4220     | <p>
4221    
4222     #data
4223     p {
4224     background: -12px;
4225     }
4226     #cssom
4227     | <p>
4228     | background: -12px 50%
4229     | background-attachment: scroll
4230     | background-color: transparent
4231     | background-image: none
4232     | background-position: -12px 50%
4233     | background-position-x: -12px
4234     | background-position-y: 50%
4235     | background-repeat: repeat
4236    
4237     #data
4238     p {
4239     background: +12px;
4240     }
4241     #cssom
4242     | <p>
4243     | background: 12px 50%
4244     | background-attachment: scroll
4245     | background-color: transparent
4246     | background-image: none
4247     | background-position: 12px 50%
4248     | background-position-x: 12px
4249     | background-position-y: 50%
4250     | background-repeat: repeat
4251    
4252     #data
4253     p {
4254     background: 2% bottom;
4255     }
4256     #cssom
4257     | <p>
4258     | background: 2% bottom
4259     | background-attachment: scroll
4260     | background-color: transparent
4261     | background-image: none
4262     | background-position: 2% bottom
4263     | background-position-x: 2%
4264     | background-position-y: bottom
4265     | background-repeat: repeat
4266    
4267     #data
4268     p {
4269     background: 2% left;
4270     }
4271     #errors
4272     ;2;18;m;syntax error:color
4273     #cssom
4274     | <p>
4275    
4276     #data
4277     p {
4278     background: none;
4279     background-attachment: scroll ! important;
4280     }
4281     #cssom
4282     | <p>
4283     | background-attachment: scroll !important
4284     | background-color: transparent
4285     | background-image: none
4286     | background-position: 0% 0%
4287     | background-position-x: 0%
4288     | background-position-y: 0%
4289     | background-repeat: repeat
4290     #csstext
4291     p {
4292     background-attachment: scroll ! important;
4293     background-color: transparent;
4294     background-image: none;
4295     background-position: 0% 0%;
4296     background-repeat: repeat;
4297     }
4298    
4299     #data
4300     p {
4301     background: 0 -12px;
4302     }
4303     #cssom
4304     | <p>
4305     | background: 0px -12px
4306     | background-attachment: scroll
4307     | background-color: transparent
4308     | background-image: none
4309     | background-position: 0px -12px
4310     | background-position-x: 0px
4311     | background-position-y: -12px
4312     | background-repeat: repeat
4313    
4314     #data
4315     p {
4316     background: 0 +12px;
4317     }
4318     #cssom
4319     | <p>
4320     | background: 0px 12px
4321     | background-attachment: scroll
4322     | background-color: transparent
4323     | background-image: none
4324     | background-position: 0px 12px
4325     | background-position-x: 0px
4326     | background-position-y: 12px
4327     | background-repeat: repeat
4328    
4329     #data
4330     p {
4331     background: none;
4332     background-color: red ! important;
4333     }
4334     #cssom
4335     | <p>
4336     | background-attachment: scroll
4337     | background-color: red !important
4338     | background-image: none
4339     | background-position: 0% 0%
4340     | background-position-x: 0%
4341     | background-position-y: 0%
4342     | background-repeat: repeat
4343     #csstext
4344     p {
4345     background-attachment: scroll;
4346     background-color: red ! important;
4347     background-image: none;
4348     background-position: 0% 0%;
4349     background-repeat: repeat;
4350     }
4351    
4352     #data
4353     p {
4354     background: none ! important;
4355     background-color: transparent ! important;
4356     }
4357     #cssom
4358     | <p>
4359     | background: transparent none repeat scroll 0% 0% !important
4360     | background-attachment: scroll !important
4361     | background-color: transparent !important
4362     | background-image: none !important
4363     | background-position: 0% 0% !important
4364     | background-position-x: 0% !important
4365     | background-position-y: 0% !important
4366     | background-repeat: repeat !important
4367     #csstext
4368     p {
4369     background: transparent none repeat scroll 0% 0% ! important;
4370     }
4371    
4372     #data
4373     p {
4374     background: none !important;
4375     background-color: blue;
4376     }
4377     #cssom
4378     | <p>
4379     | background: transparent none repeat scroll 0% 0% !important
4380     | background-attachment: scroll !important
4381     | background-color: transparent !important
4382     | background-image: none !important
4383     | background-position: 0% 0% !important
4384     | background-position-x: 0% !important
4385     | background-position-y: 0% !important
4386     | background-repeat: repeat !important
4387     #csstext
4388     p {
4389     background: transparent none repeat scroll 0% 0% ! important;
4390     }
4391    
4392     #data
4393     p {
4394     background: none;
4395     background-image: none ! important;
4396     }
4397     #cssom
4398     | <p>
4399     | background-attachment: scroll
4400     | background-color: transparent
4401     | background-image: none !important
4402     | background-position: 0% 0%
4403     | background-position-x: 0%
4404     | background-position-y: 0%
4405     | background-repeat: repeat
4406     #csstext
4407     p {
4408     background-attachment: scroll;
4409     background-color: transparent;
4410     background-image: none ! important;
4411     background-position: 0% 0%;
4412     background-repeat: repeat;
4413     }
4414    
4415     #data
4416     p {
4417     background: none;
4418     background-position: left top !important;
4419     }
4420     #cssom
4421     | <p>
4422     | background-attachment: scroll
4423     | background-color: transparent
4424     | background-image: none
4425     | background-position: left top !important
4426     | background-position-x: left !important
4427     | background-position-y: top !important
4428     | background-repeat: repeat
4429     #csstext
4430     p {
4431     background-attachment: scroll;
4432     background-color: transparent;
4433     background-image: none;
4434     background-position: left top ! important;
4435     background-repeat: repeat;
4436     }
4437    
4438     #data
4439     p {
4440     background: none;
4441     background-position-x: left !important;
4442     }
4443     #cssom
4444     | <p>
4445     | background-attachment: scroll
4446     | background-color: transparent
4447     | background-image: none
4448     | background-position-x: left !important
4449     | background-position-y: 0%
4450     | background-repeat: repeat
4451     #csstext
4452     p {
4453     background-attachment: scroll;
4454     background-color: transparent;
4455     background-image: none;
4456     background-position-x: left ! important;
4457     background-position-y: 0%;
4458     background-repeat: repeat;
4459     }
4460    
4461     #data
4462     p {
4463     background: none;
4464     background-position-y: 12% !important;
4465     }
4466     #cssom
4467     | <p>
4468     | background-attachment: scroll
4469     | background-color: transparent
4470     | background-image: none
4471     | background-position-x: 0%
4472     | background-position-y: 12% !important
4473     | background-repeat: repeat
4474     #csstext
4475     p {
4476     background-attachment: scroll;
4477     background-color: transparent;
4478     background-image: none;
4479     background-position-x: 0%;
4480     background-position-y: 12% ! important;
4481     background-repeat: repeat;
4482     }
4483    
4484     #data
4485     p {
4486     background: none;
4487     background-repeat: no-repeat ! important;
4488     }
4489     #cssom
4490     | <p>
4491     | background-attachment: scroll
4492     | background-color: transparent
4493     | background-image: none
4494     | background-position: 0% 0%
4495     | background-position-x: 0%
4496     | background-position-y: 0%
4497     | background-repeat: no-repeat !important
4498     #csstext
4499     p {
4500     background-attachment: scroll;
4501     background-color: transparent;
4502     background-image: none;
4503     background-position: 0% 0%;
4504     background-repeat: no-repeat ! important;
4505     }
4506    
4507     #data
4508     p {
4509     background: none !important;
4510     }
4511     #cssom
4512     | <p>
4513     | background: transparent none repeat scroll 0% 0% !important
4514     | background-attachment: scroll !important
4515     | background-color: transparent !important
4516     | background-image: none !important
4517     | background-position: 0% 0% !important
4518     | background-position-x: 0% !important
4519     | background-position-y: 0% !important
4520     | background-repeat: repeat !important
4521     #csstext
4522     p {
4523     background: transparent none repeat scroll 0% 0% ! important;
4524     }
4525    
4526     #data
4527     p {
4528     background: none;
4529     background-image: inherit;
4530     }
4531     #cssom
4532     | <p>
4533     | background-attachment: scroll
4534     | background-color: transparent
4535     | background-image: inherit
4536     | background-position: 0% 0%
4537     | background-position-x: 0%
4538     | background-position-y: 0%
4539     | background-repeat: repeat
4540     #csstext
4541     p {
4542     background-attachment: scroll;
4543     background-color: transparent;
4544     background-image: inherit;
4545     background-position: 0% 0%;
4546     background-repeat: repeat;
4547     }
4548    
4549     #data
4550     p {
4551     background: inherit;
4552     }
4553     #cssom
4554     | <p>
4555     | background: inherit
4556     | background-attachment: inherit
4557     | background-color: inherit
4558     | background-image: inherit
4559     | background-position: inherit
4560     | background-position-x: inherit
4561     | background-position-y: inherit
4562     | background-repeat: inherit
4563     #csstext
4564     p {
4565     background: inherit;
4566     }
4567    
4568     #data
4569     p {
4570     background: none;
4571     background-color: inherit;
4572     }
4573     #cssom
4574     | <p>
4575     | background-attachment: scroll
4576     | background-color: inherit
4577     | background-image: none
4578     | background-position: 0% 0%
4579     | background-position-x: 0%
4580     | background-position-y: 0%
4581     | background-repeat: repeat
4582     #csstext
4583     p {
4584     background-attachment: scroll;
4585     background-color: inherit;
4586     background-image: none;
4587     background-position: 0% 0%;
4588     background-repeat: repeat;
4589     }
4590    
4591     #data
4592     p {
4593     background: none;
4594     background-position: inherit;
4595     }
4596     #cssom
4597     | <p>
4598     | background-attachment: scroll
4599     | background-color: transparent
4600     | background-image: none
4601     | background-position: inherit
4602     | background-position-x: inherit
4603     | background-position-y: inherit
4604     | background-repeat: repeat
4605     #csstext
4606     p {
4607     background-attachment: scroll;
4608     background-color: transparent;
4609     background-image: none;
4610     background-position: inherit;
4611     background-repeat: repeat;
4612     }
4613    
4614     #data
4615     p {
4616     background: inherit;
4617     background-position-y: -13%;
4618     }
4619     #cssom
4620     | <p>
4621     | background-attachment: inherit
4622     | background-color: inherit
4623     | background-image: inherit
4624     | background-position-x: inherit
4625     | background-position-y: -13%
4626     | background-repeat: inherit
4627     #csstext
4628     p {
4629     background-attachment: inherit;
4630     background-color: inherit;
4631     background-image: inherit;
4632     background-position-x: inherit;
4633     background-position-y: -13%;
4634     background-repeat: inherit;
4635     }
4636    
4637     #data
4638     p {
4639     background: blue;
4640     background-position: inherit;
4641     }
4642     #cssom
4643     | <p>
4644     | background-attachment: scroll
4645     | background-color: blue
4646     | background-image: none
4647     | background-position: inherit
4648     | background-position-x: inherit
4649     | background-position-y: inherit
4650     | background-repeat: repeat
4651     #csstext
4652     p {
4653     background-attachment: scroll;
4654     background-color: blue;
4655     background-image: none;
4656     background-position: inherit;
4657     background-repeat: repeat;
4658     }
4659    
4660     #data
4661     p {
4662     background: inherit;
4663     background-position-x: -13%;
4664     }
4665     #cssom
4666     | <p>
4667     | background-attachment: inherit
4668     | background-color: inherit
4669     | background-image: inherit
4670     | background-position-x: -13%
4671     | background-position-y: inherit
4672     | background-repeat: inherit
4673     #csstext
4674     p {
4675     background-attachment: inherit;
4676     background-color: inherit;
4677     background-image: inherit;
4678     background-position-x: -13%;
4679     background-position-y: inherit;
4680     background-repeat: inherit;
4681     }
4682    
4683     #data
4684     p {
4685     background: blue;
4686     background-position-y: inherit;
4687     }
4688     #cssom
4689     | <p>
4690     | background-attachment: scroll
4691     | background-color: blue
4692     | background-image: none
4693     | background-position-x: 0%
4694     | background-position-y: inherit
4695     | background-repeat: repeat
4696     #csstext
4697     p {
4698     background-attachment: scroll;
4699     background-color: blue;
4700     background-image: none;
4701     background-position-x: 0%;
4702     background-position-y: inherit;
4703     background-repeat: repeat;
4704     }
4705    
4706     #data
4707     p {
4708     background: blue;
4709     background-position: inherit;
4710     background-position-y: inherit ! important;
4711     }
4712     #cssom
4713     | <p>
4714     | background-attachment: scroll
4715     | background-color: blue
4716     | background-image: none
4717     | background-position-x: inherit
4718     | background-position-y: inherit !important
4719     | background-repeat: repeat
4720     #csstext
4721     p {
4722     background-attachment: scroll;
4723     background-color: blue;
4724     background-image: none;
4725     background-position-x: inherit;
4726     background-position-y: inherit ! important;
4727     background-repeat: repeat;
4728     }
4729    
4730     #data
4731     p {
4732     background: none;
4733     background-repeat: inherit;
4734     }
4735     #cssom
4736     | <p>
4737     | background-attachment: scroll
4738     | background-color: transparent
4739     | background-image: none
4740     | background-position: 0% 0%
4741     | background-position-x: 0%
4742     | background-position-y: 0%
4743     | background-repeat: inherit
4744     #csstext
4745     p {
4746     background-attachment: scroll;
4747     background-color: transparent;
4748     background-image: none;
4749     background-position: 0% 0%;
4750     background-repeat: inherit;
4751     }
4752 wakaba 1.10
4753     #data
4754     p {
4755     opacity: 0.4;
4756     }
4757     #cssom
4758     | <p>
4759     | -moz-opacity: 0.4
4760     | opacity: 0.4
4761     #csstext
4762     p {
4763     opacity: 0.4;
4764     }
4765    
4766     #data
4767     p {
4768     opacity: +0.4;
4769     }
4770     #cssom
4771     | <p>
4772     | -moz-opacity: 0.4
4773     | opacity: 0.4
4774     #csstext
4775     p {
4776     opacity: 0.4;
4777     }
4778    
4779     #data
4780     p {
4781     opacity: 0.40000;
4782     }
4783     #cssom
4784     | <p>
4785     | -moz-opacity: 0.4
4786     | opacity: 0.4
4787     #csstext
4788     p {
4789     opacity: 0.4;
4790     }
4791    
4792     #data
4793     p {
4794     opacity: 0000000.4;
4795     }
4796     #cssom
4797     | <p>
4798     | -moz-opacity: 0.4
4799     | opacity: 0.4
4800     #csstext
4801     p {
4802     opacity: 0.4;
4803     }
4804    
4805     #data
4806     p {
4807     opacity: 0.0000;
4808     }
4809     #cssom
4810     | <p>
4811     | -moz-opacity: 0
4812     | opacity: 0
4813     #csstext
4814     p {
4815     opacity: 0;
4816     }
4817    
4818     #data
4819     p {
4820     opacity: 00000;
4821     }
4822     #cssom
4823     | <p>
4824     | -moz-opacity: 0
4825     | opacity: 0
4826     #csstext
4827     p {
4828     opacity: 0;
4829     }
4830    
4831     #data
4832     p {
4833     opacity: +0;
4834     }
4835     #cssom
4836     | <p>
4837     | -moz-opacity: 0
4838     | opacity: 0
4839     #csstext
4840     p {
4841     opacity: 0;
4842     }
4843    
4844     #data
4845     p {
4846     opacity: -0;
4847     }
4848     #cssom
4849     | <p>
4850     | -moz-opacity: 0
4851     | opacity: 0
4852     #csstext
4853     p {
4854     opacity: 0;
4855     }
4856    
4857     #data
4858     p {
4859     opacity: inherit;
4860     }
4861     #cssom
4862     | <p>
4863     | -moz-opacity: inherit
4864     | opacity: inherit
4865     #csstext
4866     p {
4867     opacity: inherit;
4868     }
4869    
4870     #data
4871     p {
4872     opacity: +inherit;
4873     }
4874     #errors
4875     ;2;13;m;syntax error:'opacity'
4876     #cssom
4877     | <p>
4878    
4879     #data
4880     p {
4881     -moz-opacity: 0;
4882     }
4883     #cssom
4884     | <p>
4885     | -moz-opacity: 0
4886     | opacity: 0
4887     #csstext
4888     p {
4889     opacity: 0;
4890     }
4891    
4892     #data
4893     p {
4894     -moz-opacity: 0.4;
4895     }
4896     #cssom
4897     | <p>
4898     | -moz-opacity: 0.4
4899     | opacity: 0.4
4900     #csstext
4901     p {
4902     opacity: 0.4;
4903     }
4904    
4905     #data
4906     p {
4907     -moz-opacity: inherit;
4908     }
4909     #cssom
4910     | <p>
4911     | -moz-opacity: inherit
4912     | opacity: inherit
4913     #csstext
4914     p {
4915     opacity: inherit;
4916     }
4917    
4918     #data
4919     p {
4920     -moz-opacity: +inherit;
4921     }
4922     #errors
4923     ;2;18;m;syntax error:'-moz-opacity'
4924     #cssom
4925     | <p>

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24