/[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.16 - (hide annotations) (download)
Mon Sep 15 14:34:24 2008 UTC (16 years, 1 month ago) by wakaba
Branch: MAIN
CVS Tags: HEAD
Changes since 1.15: +168 -0 lines
++ whatpm/t/ChangeLog	15 Sep 2008 14:34:19 -0000
2008-09-15  Wakaba  <wakaba@suika.fam.cx>

	* css-visual.dat: New test data for Firefox3's new 'width'
	values.

++ whatpm/Whatpm/CSS/ChangeLog	15 Sep 2008 14:34:00 -0000
2008-09-15  Wakaba  <wakaba@suika.fam.cx>

	* Parser.pm: Support for Firefox3's new 'width' keywords.

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 wakaba 1.15 ;2;18;m;CSS syntax error;'margin-bottom'
277 wakaba 1.1 #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 wakaba 1.15 ;2;16;m;CSS syntax error;'margin-top'
421 wakaba 1.1 #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 wakaba 1.15 ;2;16;m;CSS syntax error;'margin-left'
465 wakaba 1.1 #cssom
466     | <p>
467     #csstext
468     p {
469     }
470    
471     #data
472     p {
473     margin-left: -/**/auto;
474     }
475     #errors
476 wakaba 1.15 ;2;21;m;CSS syntax error;'margin-left'
477 wakaba 1.1 #cssom
478     | <p>
479     #csstext
480     p {
481     }
482    
483     #data
484     p {
485     margin-left: +auto;
486     }
487     #errors
488 wakaba 1.15 ;2;17;m;CSS 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 wakaba 1.15 ;2;15;m;CSS syntax error;'margin'
549 wakaba 1.2 #cssom
550     | <p>
551     #csstext
552     p {
553     }
554    
555     #data
556     p {
557     margin: +0 +auto;
558     }
559     #errors
560 wakaba 1.15 ;2;15;m;CSS syntax error;'margin'
561 wakaba 1.2 #cssom
562     | <p>
563     #csstext
564     p {
565     }
566    
567     #data
568     p {
569     margin: +0 +0 +;
570     }
571     #errors
572 wakaba 1.15 ;2;18;m;CSS syntax error;'margin'
573 wakaba 1.2 #cssom
574     | <p>
575     #csstext
576     p {
577     }
578    
579     #data
580     p {
581     margin: +0 +0 +auto;
582     }
583     #errors
584 wakaba 1.15 ;2;18;m;CSS syntax error;'margin'
585 wakaba 1.2 #cssom
586     | <p>
587     #csstext
588     p {
589     }
590    
591     #data
592     p {
593     margin: +0 +0 +0 +;
594     }
595     #errors
596 wakaba 1.15 ;2;21;m;CSS syntax error;'margin'
597 wakaba 1.2 #cssom
598     | <p>
599     #csstext
600     p {
601     }
602    
603     #data
604     p {
605     margin: +0 +0 +0 +auto;
606     }
607     #errors
608 wakaba 1.15 ;2;21;m;CSS syntax error;'margin'
609 wakaba 1.2 #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 wakaba 1.15 ;2;22;m;CSS syntax error;'border-top-width'
1305 wakaba 1.8 #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 wakaba 1.15 ;2;21;m;CSS syntax error;'border-top-width'
1365 wakaba 1.8 #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 wakaba 1.15 ;2;22;m;CSS syntax error;'border-top-width'
1383 wakaba 1.8 #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 wakaba 1.15 ;2;22;m;CSS syntax error;'border-top-width'
1401 wakaba 1.8 #cssom
1402     | <p>
1403    
1404     #data
1405     p {
1406     border-top-width: -12;
1407     }
1408     #option q
1409     #errors
1410 wakaba 1.15 ;2;22;m;CSS syntax error;'border-top-width'
1411 wakaba 1.8 #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 wakaba 1.15 ;2;17;m;CSS syntax error;'border-width'
1527 wakaba 1.8 #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 wakaba 1.15 ;2;18;m;CSS syntax error;'border-width'
1549 wakaba 1.8 #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 wakaba 1.15 ;2;18;m;CSS syntax error;'border-width'
1595 wakaba 1.8 #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 wakaba 1.15 ;2;22;m;CSS syntax error;'border-width'
1628 wakaba 1.8 #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 wakaba 1.15 ;2;26;m;CSS syntax error;'border-width'
1661 wakaba 1.8 #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 wakaba 1.15 ;2;30;m;CSS syntax error;'border-width'
1694 wakaba 1.8 #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 wakaba 1.15 ;2;17;m;CSS syntax error;'padding-top'
1976 wakaba 1.8 #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 wakaba 1.15 ;2;13;m;CSS syntax error;'z-index'
2475 wakaba 1.8 #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 wakaba 1.15 ;2;11;m;CSS syntax error;'width'
2500 wakaba 1.8 #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 wakaba 1.16 width: -moz-max-content;
2522     }
2523     #cssom
2524     | <p>
2525     | width: -moz-max-content
2526     #computed 1 p
2527     -| width: auto
2528     +| width: -moz-max-content
2529     #computedtext 1 p
2530     - width: auto;
2531     + width: -moz-max-content;
2532    
2533     #data
2534     p {
2535     width: -moz-min-content;
2536     }
2537     #cssom
2538     | <p>
2539     | width: -moz-min-content
2540     #computed 1 p
2541     -| width: auto
2542     +| width: -moz-min-content
2543     #computedtext 1 p
2544     - width: auto;
2545     + width: -moz-min-content;
2546    
2547     #data
2548     p {
2549     width: -moz-fit-content;
2550     }
2551     #cssom
2552     | <p>
2553     | width: -moz-fit-content
2554     #computed 1 p
2555     -| width: auto
2556     +| width: -moz-fit-content
2557     #computedtext 1 p
2558     - width: auto;
2559     + width: -moz-fit-content;
2560    
2561     #data
2562     p {
2563     width: -moz-available;
2564     }
2565     #cssom
2566     | <p>
2567     | width: -moz-available
2568     #computed 1 p
2569     -| width: auto
2570     +| width: -moz-available
2571     #computedtext 1 p
2572     - width: auto;
2573     + width: -moz-available;
2574    
2575     #data
2576     p {
2577 wakaba 1.8 width: none;
2578     }
2579     #errors
2580 wakaba 1.15 ;2;10;m;CSS syntax error;'width'
2581 wakaba 1.8 #cssom
2582     | <p>
2583    
2584     #data
2585     p {
2586     width: inherit
2587     }
2588     #cssom
2589     | <p>
2590     | width: inherit
2591    
2592     #data
2593     p {
2594     min-width: 62px;
2595     }
2596     #cssom
2597     | <p>
2598     | min-width: 62px
2599    
2600     #data
2601     p {
2602     min-width: +62px;
2603     }
2604     #cssom
2605     | <p>
2606     | min-width: 62px
2607    
2608     #data
2609     p {
2610     min-width: -62px;
2611     }
2612     #errors
2613 wakaba 1.15 ;2;15;m;CSS syntax error;'min-width'
2614 wakaba 1.8 #cssom
2615     | <p>
2616    
2617     #data
2618     p {
2619     min-width: 62%;
2620     }
2621     #cssom
2622     | <p>
2623     | min-width: 62%
2624    
2625     #data
2626     p {
2627     min-width: auto;
2628     }
2629     #errors
2630 wakaba 1.15 ;2;14;m;CSS syntax error;'min-width'
2631 wakaba 1.8 #cssom
2632     | <p>
2633    
2634     #data
2635     p {
2636 wakaba 1.16 min-width: -moz-max-content;
2637     }
2638     #cssom
2639     | <p>
2640     | min-width: -moz-max-content
2641     #computed 1 p
2642     -| min-width: 0px
2643     +| min-width: -moz-max-content
2644     #computedtext 1 p
2645     - min-width: 0px;
2646     + min-width: -moz-max-content;
2647    
2648     #data
2649     p {
2650     min-width: -moz-min-content;
2651     }
2652     #cssom
2653     | <p>
2654     | min-width: -moz-min-content
2655     #computed 1 p
2656     -| min-width: 0px
2657     +| min-width: -moz-min-content
2658     #computedtext 1 p
2659     - min-width: 0px;
2660     + min-width: -moz-min-content;
2661    
2662     #data
2663     p {
2664     min-width: -moz-fit-content;
2665     }
2666     #cssom
2667     | <p>
2668     | min-width: -moz-fit-content
2669     #computed 1 p
2670     -| min-width: 0px
2671     +| min-width: -moz-fit-content
2672     #computedtext 1 p
2673     - min-width: 0px;
2674     + min-width: -moz-fit-content;
2675    
2676     #data
2677     p {
2678     min-width: -moz-available;
2679     }
2680     #cssom
2681     | <p>
2682     | min-width: -moz-available
2683     #computed 1 p
2684     -| min-width: 0px
2685     +| min-width: -moz-available
2686     #computedtext 1 p
2687     - min-width: 0px;
2688     + min-width: -moz-available;
2689    
2690     #data
2691     p {
2692 wakaba 1.8 min-width: none;
2693     }
2694     #errors
2695 wakaba 1.15 ;2;14;m;CSS syntax error;'min-width'
2696 wakaba 1.8 #cssom
2697     | <p>
2698    
2699     #data
2700     p {
2701     min-width: inherit
2702     }
2703     #cssom
2704     | <p>
2705     | min-width: inherit
2706    
2707     #data
2708     p {
2709     max-width: 62px;
2710     }
2711     #cssom
2712     | <p>
2713     | max-width: 62px
2714    
2715     #data
2716     p {
2717     max-width: +62px;
2718     }
2719     #cssom
2720     | <p>
2721     | max-width: 62px
2722    
2723     #data
2724     p {
2725     max-width: -62px;
2726     }
2727     #errors
2728 wakaba 1.15 ;2;15;m;CSS syntax error;'max-width'
2729 wakaba 1.8 #cssom
2730     | <p>
2731    
2732     #data
2733     p {
2734     max-width: 62%;
2735     }
2736     #cssom
2737     | <p>
2738     | max-width: 62%
2739    
2740     #data
2741     p {
2742     max-width: auto;
2743     }
2744     #errors
2745 wakaba 1.15 ;2;14;m;CSS syntax error;'max-width'
2746 wakaba 1.8 #cssom
2747     | <p>
2748 wakaba 1.16
2749     #data
2750     p {
2751     max-width: -moz-max-content;
2752     }
2753     #cssom
2754     | <p>
2755     | max-width: -moz-max-content
2756     #computed 1 p
2757     -| max-width: none
2758     +| max-width: -moz-max-content
2759     #computedtext 1 p
2760     - max-width: none;
2761     + max-width: -moz-max-content;
2762    
2763     #data
2764     p {
2765     max-width: -moz-min-content;
2766     }
2767     #cssom
2768     | <p>
2769     | max-width: -moz-min-content
2770     #computed 1 p
2771     -| max-width: none
2772     +| max-width: -moz-min-content
2773     #computedtext 1 p
2774     - max-width: none;
2775     + max-width: -moz-min-content;
2776    
2777     #data
2778     p {
2779     max-width: -moz-fit-content;
2780     }
2781     #cssom
2782     | <p>
2783     | max-width: -moz-fit-content
2784     #computed 1 p
2785     -| max-width: none
2786     +| max-width: -moz-fit-content
2787     #computedtext 1 p
2788     - max-width: none;
2789     + max-width: -moz-fit-content;
2790    
2791     #data
2792     p {
2793     max-width: -moz-available;
2794     }
2795     #cssom
2796     | <p>
2797     | max-width: -moz-available
2798     #computed 1 p
2799     -| max-width: none
2800     +| max-width: -moz-available
2801     #computedtext 1 p
2802     - max-width: none;
2803     + max-width: -moz-available;
2804 wakaba 1.8
2805     #data
2806     p {
2807     max-width: none
2808     }
2809     #cssom
2810     | <p>
2811     | max-width: none
2812    
2813     #data
2814     p {
2815     max-width: inherit
2816     }
2817     #cssom
2818     | <p>
2819     | max-width: inherit
2820    
2821     #data
2822     p {
2823     height: 62px;
2824     }
2825     #cssom
2826     | <p>
2827     | height: 62px
2828    
2829     #data
2830     p {
2831     height: +62px;
2832     }
2833     #cssom
2834     | <p>
2835     | height: 62px
2836    
2837     #data
2838     p {
2839     height: -62px;
2840     }
2841     #errors
2842 wakaba 1.15 ;2;12;m;CSS syntax error;'height'
2843 wakaba 1.8 #cssom
2844     | <p>
2845    
2846     #data
2847     p {
2848     height: 62%;
2849     }
2850     #cssom
2851     | <p>
2852     | height: 62%
2853    
2854     #data
2855     p {
2856     height: auto;
2857     }
2858     #cssom
2859     | <p>
2860     | height: auto
2861    
2862     #data
2863     p {
2864     height: none;
2865     }
2866     #errors
2867 wakaba 1.15 ;2;11;m;CSS syntax error;'height'
2868 wakaba 1.8 #cssom
2869     | <p>
2870    
2871     #data
2872     p {
2873     height: inherit
2874     }
2875     #cssom
2876     | <p>
2877     | height: inherit
2878    
2879     #data
2880     p {
2881     min-height: 62px;
2882     }
2883     #cssom
2884     | <p>
2885     | min-height: 62px
2886    
2887     #data
2888     p {
2889     min-height: +62px;
2890     }
2891     #cssom
2892     | <p>
2893     | min-height: 62px
2894    
2895     #data
2896     p {
2897     min-height: -62px;
2898     }
2899     #errors
2900 wakaba 1.15 ;2;16;m;CSS syntax error;'min-height'
2901 wakaba 1.8 #cssom
2902     | <p>
2903    
2904     #data
2905     p {
2906     min-height: 62%;
2907     }
2908     #cssom
2909     | <p>
2910     | min-height: 62%
2911    
2912     #data
2913     p {
2914     min-height: auto;
2915     }
2916     #errors
2917 wakaba 1.15 ;2;15;m;CSS syntax error;'min-height'
2918 wakaba 1.8 #cssom
2919     | <p>
2920    
2921     #data
2922     p {
2923     min-height: none;
2924     }
2925     #errors
2926 wakaba 1.15 ;2;15;m;CSS syntax error;'min-height'
2927 wakaba 1.8 #cssom
2928     | <p>
2929    
2930     #data
2931     p {
2932     min-height: inherit
2933     }
2934     #cssom
2935     | <p>
2936     | min-height: inherit
2937    
2938     #data
2939     p {
2940     max-height: 62px;
2941     }
2942     #cssom
2943     | <p>
2944     | max-height: 62px
2945    
2946     #data
2947     p {
2948     max-height: +62px;
2949     }
2950     #cssom
2951     | <p>
2952     | max-height: 62px
2953    
2954     #data
2955     p {
2956     max-height: -62px;
2957     }
2958     #errors
2959 wakaba 1.15 ;2;16;m;CSS syntax error;'max-height'
2960 wakaba 1.8 #cssom
2961     | <p>
2962    
2963     #data
2964     p {
2965     max-height: 62%;
2966     }
2967     #cssom
2968     | <p>
2969     | max-height: 62%
2970    
2971     #data
2972     p {
2973     max-height: auto;
2974     }
2975     #errors
2976 wakaba 1.15 ;2;15;m;CSS syntax error;'max-height'
2977 wakaba 1.8 #cssom
2978     | <p>
2979    
2980     #data
2981     p {
2982     max-height: none
2983     }
2984     #cssom
2985     | <p>
2986     | max-height: none
2987    
2988     #data
2989     p {
2990     max-height: inherit
2991     }
2992     #cssom
2993     | <p>
2994     | max-height: inherit
2995    
2996     #data
2997     p {
2998     line-height: normal;
2999     }
3000     #cssom
3001     | <p>
3002     | line-height: normal
3003    
3004     #data
3005     p {
3006     line-height: 12px;
3007     }
3008     #cssom
3009     | <p>
3010     | line-height: 12px
3011    
3012     #data
3013     p {
3014     line-height: +12px
3015     }
3016     #cssom
3017     | <p>
3018     | line-height: 12px
3019    
3020     #data
3021     p {
3022     line-height: -12px
3023     }
3024     #errors
3025 wakaba 1.15 ;2;17;m;CSS syntax error;'line-height'
3026 wakaba 1.8 #cssom
3027     | <p>
3028    
3029     #data
3030     p {
3031     line-height: 12%
3032     }
3033     #cssom
3034     | <p>
3035     | line-height: 12%
3036    
3037     #data
3038     p {
3039     line-height: +12%
3040     }
3041     #cssom
3042     | <p>
3043     | line-height: 12%
3044    
3045     #data
3046     p {
3047     line-height: -123%
3048     }
3049     #errors
3050 wakaba 1.15 ;2;17;m;CSS syntax error;'line-height'
3051 wakaba 1.8 #cssom
3052     | <p>
3053    
3054     #data
3055     p {
3056     line-height: 12
3057     }
3058     #cssom
3059     | <p>
3060     | line-height: 12
3061    
3062     #data
3063     p {
3064     line-height: 12
3065     }
3066     #option q
3067     #cssom
3068     | <p>
3069     | line-height: 12
3070    
3071     #data
3072     p {
3073     line-height: +12
3074     }
3075     #cssom
3076     | <p>
3077     | line-height: 12
3078    
3079     #data
3080     p {
3081     line-height: -12
3082     }
3083     #errors
3084 wakaba 1.15 ;2;17;m;CSS syntax error;'line-height'
3085 wakaba 1.8 #cssom
3086     | <p>
3087    
3088     #data
3089     p {
3090     line-height: 0
3091     }
3092     #cssom
3093     | <p>
3094     | line-height: 0
3095    
3096     #data
3097     p {
3098     line-height: +0
3099     }
3100     #cssom
3101     | <p>
3102     | line-height: 0
3103    
3104     #data
3105     p {
3106     line-height: -0
3107     }
3108     #cssom
3109     | <p>
3110     | line-height: 0
3111    
3112     #data
3113     p {
3114     vertical-align: baseline;
3115     }
3116     #cssom
3117     | <p>
3118     | vertical-align: baseline
3119    
3120     #data
3121     p {
3122     vertical-align: sub;
3123     }
3124     #cssom
3125     | <p>
3126     | vertical-align: sub
3127    
3128     #data
3129     p {
3130     vertical-align: super;
3131     }
3132     #cssom
3133     | <p>
3134     | vertical-align: super
3135    
3136     #data
3137     p {
3138     vertical-align: sup;
3139     }
3140     #errors
3141 wakaba 1.15 ;2;19;m;CSS syntax error;'vertical-align'
3142 wakaba 1.8 #cssom
3143     | <p>
3144    
3145     #data
3146     p {
3147     vertical-align: top;
3148     }
3149     #cssom
3150     | <p>
3151     | vertical-align: top
3152    
3153     #data
3154     p {
3155     vertical-align: text-top;
3156     }
3157     #cssom
3158     | <p>
3159     | vertical-align: text-top
3160    
3161     #data
3162     p {
3163     vertical-align: middle;
3164     }
3165     #cssom
3166     | <p>
3167     | vertical-align: middle
3168    
3169     #data
3170     p {
3171     vertical-align: normal;
3172     }
3173     #errors
3174 wakaba 1.15 ;2;19;m;CSS syntax error;'vertical-align'
3175 wakaba 1.8 #cssom
3176     | <p>
3177    
3178     #data
3179     p {
3180     vertical-align: bottom;
3181     }
3182     #cssom
3183     | <p>
3184     | vertical-align: bottom
3185    
3186     #data
3187     p {
3188     vertical-align: text-bottom;
3189     }
3190     #cssom
3191     | <p>
3192     | vertical-align: text-bottom
3193    
3194     #data
3195     p {
3196     vertical-align: 12%;
3197     }
3198     #cssom
3199     | <p>
3200     | vertical-align: 12%
3201    
3202     #data
3203     p {
3204     vertical-align: +12%;
3205     }
3206     #cssom
3207     | <p>
3208     | vertical-align: 12%
3209    
3210     #data
3211     p {
3212     vertical-align: -12%;
3213     }
3214     #cssom
3215     | <p>
3216     | vertical-align: -12%
3217    
3218     #data
3219     p {
3220     vertical-align: 10em;
3221     }
3222     #cssom
3223     | <p>
3224     | vertical-align: 10em
3225    
3226     #data
3227     p {
3228     vertical-align: +0000010em;
3229     }
3230     #cssom
3231     | <p>
3232     | vertical-align: 10em
3233    
3234     #data
3235     p {
3236     vertical-align: -00012.00000px;
3237     }
3238     #cssom
3239     | <p>
3240     | vertical-align: -12px
3241    
3242     #data
3243     p {
3244     vertical-align: inherit;
3245     }
3246     #cssom
3247     | <p>
3248     | vertical-align: inherit
3249 wakaba 1.3
3250 wakaba 1.6 #data
3251     p {
3252 wakaba 1.11 overflow: scroll;
3253     }
3254     #cssom
3255     | <p>
3256     | overflow: scroll
3257     | overflow-x: scroll
3258     | overflow-y: scroll
3259     #csstext
3260     p {
3261     overflow: scroll;
3262     }
3263    
3264     #data
3265     p {
3266     overflow: auto;
3267     }
3268     #cssom
3269     | <p>
3270     | overflow: auto
3271     | overflow-x: auto
3272     | overflow-y: auto
3273     #csstext
3274     p {
3275     overflow: auto;
3276     }
3277    
3278     #data
3279     p {
3280     overflow: hidden;
3281     }
3282     #cssom
3283     | <p>
3284     | overflow: hidden
3285     | overflow-x: hidden
3286     | overflow-y: hidden
3287     #csstext
3288     p {
3289     overflow: hidden;
3290     }
3291    
3292     #data
3293     p {
3294     overflow: visible;
3295     }
3296     #cssom
3297     | <p>
3298     | overflow: visible
3299     | overflow-x: visible
3300     | overflow-y: visible
3301     #csstext
3302     p {
3303     overflow: visible;
3304     }
3305    
3306     #data
3307     p {
3308     overflow: -moz-hidden-unscrollable;
3309     }
3310     #cssom
3311     | <p>
3312     | overflow: -moz-hidden-unscrollable
3313     | overflow-x: -moz-hidden-unscrollable
3314     | overflow-y: -moz-hidden-unscrollable
3315     #csstext
3316     p {
3317     overflow: -moz-hidden-unscrollable;
3318     }
3319    
3320     #data
3321     p {
3322     overflow: -webkit-marquee;
3323     }
3324     #cssom
3325     | <p>
3326     | overflow: -webkit-marquee
3327     | overflow-x: -webkit-marquee
3328     | overflow-y: -webkit-marquee
3329     #csstext
3330     p {
3331     overflow: -webkit-marquee;
3332     }
3333    
3334     #data
3335     p {
3336     overflow: inherit;
3337     }
3338     #cssom
3339     | <p>
3340     | overflow: inherit
3341     | overflow-x: inherit
3342     | overflow-y: inherit
3343     #csstext
3344     p {
3345     overflow: inherit;
3346     }
3347    
3348     #data
3349     p {
3350     overflow-x: scroll;
3351     overflow-y: auto;
3352     }
3353     #cssom
3354     | <p>
3355     | overflow-x: scroll
3356     | overflow-y: auto
3357     #csstext
3358     p {
3359     overflow-x: scroll;
3360     overflow-y: auto;
3361     }
3362    
3363     #data
3364     p {
3365     overflow-x: auto ! important;
3366     overflow-y: auto;
3367     }
3368     #cssom
3369     | <p>
3370     | overflow-x: auto !important
3371     | overflow-y: auto
3372     #csstext
3373     p {
3374     overflow-x: auto ! important;
3375     overflow-y: auto;
3376     }
3377    
3378     #data
3379     p {
3380     overflow-y: auto ! important;
3381     overflow-x: auto;
3382     }
3383     #cssom
3384     | <p>
3385     | overflow-x: auto
3386     | overflow-y: auto !important
3387     #csstext
3388     p {
3389     overflow-x: auto;
3390     overflow-y: auto ! important;
3391     }
3392    
3393     #data
3394     p {
3395     overflow-x: inherit;
3396     overflow-y: auto;
3397     }
3398     #cssom
3399     | <p>
3400     | overflow-x: inherit
3401     | overflow-y: auto
3402     #csstext
3403     p {
3404     overflow-x: inherit;
3405     overflow-y: auto;
3406     }
3407    
3408     #data
3409     p {
3410     overflow-x: auto;
3411     overflow-y: inherit;
3412     }
3413     #cssom
3414     | <p>
3415     | overflow-x: auto
3416     | overflow-y: inherit
3417     #csstext
3418     p {
3419     overflow-x: auto;
3420     overflow-y: inherit;
3421     }
3422    
3423     #data
3424     p {
3425     overflow-x: -moz-hidden-unscrollable;
3426     }
3427     #cssom
3428     | <p>
3429     | overflow-x: -moz-hidden-unscrollable
3430     #csstext
3431     p {
3432     overflow-x: -moz-hidden-unscrollable;
3433     }
3434    
3435     #data
3436     p {
3437     overflow-y: -webkit-marquee;
3438     }
3439     #cssom
3440     | <p>
3441     | overflow-y: -webkit-marquee
3442     #csstext
3443     p {
3444     overflow-y: -webkit-marquee;
3445     }
3446    
3447     #data
3448     p {
3449 wakaba 1.12 clip: inherit;
3450     }
3451     #cssom
3452     | <p>
3453     | clip: inherit
3454     #csstext
3455     p {
3456     clip: inherit;
3457     }
3458     #computed 1 p
3459     #computedtext 1 p
3460    
3461     #data
3462     p {
3463     clip: auto;
3464     }
3465     #cssom
3466     | <p>
3467     | clip: auto
3468     #csstext
3469     p {
3470     clip: auto;
3471     }
3472    
3473     #data
3474     p {
3475     clip: rect();
3476     }
3477     #errors
3478 wakaba 1.15 ;2;14;m;CSS syntax error;'clip'
3479 wakaba 1.12 #cssom
3480     | <p>
3481    
3482     #data
3483     p {
3484     clip: rect(1px);
3485     }
3486     #errors
3487 wakaba 1.15 ;2;17;m;CSS syntax error;'clip'
3488 wakaba 1.12 #cssom
3489     | <p>
3490    
3491     #data
3492     p {
3493     clip: rect(1px,2px);
3494     }
3495     #errors
3496 wakaba 1.15 ;2;21;m;CSS syntax error;'clip'
3497 wakaba 1.12 #cssom
3498     | <p>
3499    
3500     #data
3501     p {
3502     clip: rect(1px, 2px,3px);
3503     }
3504     #errors
3505 wakaba 1.15 ;2;26;m;CSS syntax error;'clip'
3506 wakaba 1.12 #cssom
3507     | <p>
3508    
3509     #data
3510     p {
3511     clip: rect(1px, 2px, 3px, 4px
3512     }
3513     #errors
3514 wakaba 1.15 ;3;1;m;CSS syntax error;'clip'
3515 wakaba 1.12 #cssom
3516     | <p>
3517    
3518     #data
3519     p {
3520     clip: rect(0, 0, 0, 0)
3521     }
3522     #cssom
3523     | <p>
3524     | clip: rect(0px, 0px, 0px, 0px)
3525    
3526     #data
3527     p {
3528     clip: rect(1 1 1 1);
3529     }
3530     #errors
3531 wakaba 1.15 ;2;14;m;CSS syntax error;'clip'
3532 wakaba 1.12 #cssom
3533     | <p>
3534    
3535     #data
3536     p {
3537     clip: rect(1 1 1 1)
3538     }
3539     #option q
3540     #cssom
3541     | <p>
3542     | clip: rect(1px, 1px, 1px, 1px)
3543    
3544     #data
3545     p {
3546     clip: rect(0 0 0 12)
3547     }
3548     #errors
3549 wakaba 1.15 ;2;20;m;CSS syntax error;'clip'
3550 wakaba 1.12 #cssom
3551     | <p>
3552    
3553     #data
3554     p {
3555     clip: rect(0 0 0 12)
3556     }
3557     #option q
3558     #cssom
3559     | <p>
3560     | clip: rect(0px, 0px, 0px, 12px)
3561    
3562     #data
3563     p {
3564     clip: rect(1px 3px 2px 4px)
3565     }
3566     #cssom
3567     | <p>
3568     | clip: rect(1px, 3px, 2px, 4px)
3569    
3570     #data
3571     p {
3572     clip: rect(1px 3px 3px, 12px)
3573     }
3574     #cssom
3575     | <p>
3576     | clip: rect(1px, 3px, 3px, 12px)
3577    
3578     #data
3579     p {
3580     clip: rect(1px, 2px ,3px, 4px);
3581     }
3582     #cssom
3583     | <p>
3584     | clip: rect(1px, 2px, 3px, 4px)
3585     #csstext
3586     p {
3587     clip: rect(1px, 2px, 3px, 4px);
3588     }
3589     #computed 1 p
3590     -| clip: auto
3591     +| clip: rect(1px, 2px, 3px, 4px)
3592    
3593     #data
3594     p {
3595     clip: rect(+1px, +2px, +3px, +34px)
3596     }
3597     #cssom
3598     | <p>
3599     | clip: rect(1px, 2px, 3px, 34px)
3600    
3601     #data
3602     p {
3603     clip: rect(-1px, -0023.012px, -.4400em, -0.004400in);
3604     }
3605     #cssom
3606     | <p>
3607     | clip: rect(-1px, -23.012px, -0.44em, -0.0044in)
3608    
3609     #data
3610     p {
3611     clip: rect(1px, 2% 4em 6cm);
3612     }
3613     #errors
3614 wakaba 1.15 ;2;19;m;CSS syntax error;'clip'
3615 wakaba 1.12 #cssom
3616     | <p>
3617    
3618     #data
3619     p {
3620     clip: rect(1px auto 3px, auto);
3621     }
3622     #cssom
3623     | <p>
3624     | clip: rect(1px, auto, 3px, auto)
3625    
3626     #data
3627     p {
3628     clip: rect(auto, auto, auto, auto)
3629     }
3630     #cssom
3631     | <p>
3632     | clip: rect(auto, auto, auto, auto)
3633     #csstext
3634     p {
3635     clip: rect(auto, auto, auto, auto);
3636     }
3637     #computed 1 p
3638     -| clip: auto
3639     +| clip: rect(auto, auto, auto, auto)
3640    
3641     #data
3642     p {
3643     clip: rect(inherit, 1px, auto, 2px);
3644     }
3645     #errors
3646 wakaba 1.15 ;2;14;m;CSS syntax error;'clip'
3647 wakaba 1.12
3648     #data
3649     p {
3650     clip: rect(1px, 2px, 3px, 4px );
3651     }
3652     #cssom
3653     | <p>
3654     | clip: rect(1px, 2px, 3px, 4px)
3655    
3656     #data
3657     p {
3658     clip: rect(1px, 2px, 3px, 4px 5px);
3659     }
3660     #errors
3661 wakaba 1.15 ;2;33;m;CSS syntax error;'clip'
3662 wakaba 1.12 #cssom
3663     | <p>
3664    
3665     #data
3666     p {
3667     clip: rect(1px, 2px, 3px, 4px,);
3668     }
3669     #errors
3670 wakaba 1.15 ;2;32;m;CSS syntax error;'clip'
3671 wakaba 1.12 #cssom
3672     | <p>
3673    
3674     #data
3675     p {
3676     clip: rect(1px, 2px, 3px, 4px, 5px);
3677     }
3678     #errors
3679 wakaba 1.15 ;2;32;m;CSS syntax error;'clip'
3680 wakaba 1.12 #cssom
3681     | <p>
3682    
3683     #data
3684     p {
3685 wakaba 1.6 background-position: inherit;
3686     }
3687     #cssom
3688     | <p>
3689     | background-position: inherit
3690     | background-position-x: inherit
3691     | background-position-y: inherit
3692     #csstext
3693     p {
3694     background-position: inherit;
3695     }
3696 wakaba 1.1
3697 wakaba 1.6 #data
3698     p {
3699     background-position-x: inherit;
3700     }
3701     #cssom
3702     | <p>
3703     | background-position-x: inherit
3704     #csstext
3705     p {
3706     background-position-x: inherit;
3707     }
3708 wakaba 1.1
3709 wakaba 1.6 #data
3710     p {
3711     background-position-x: inherit;
3712     background-position-y: inherit;
3713     }
3714     #cssom
3715     | <p>
3716     | background-position: inherit
3717     | background-position-x: inherit
3718     | background-position-y: inherit
3719     #csstext
3720     p {
3721     background-position: inherit;
3722     }
3723 wakaba 1.1
3724 wakaba 1.6 #data
3725     p {
3726     background-position-x: inherit;
3727     background-position-y: inherit !important;
3728     }
3729     #cssom
3730     | <p>
3731     | background-position-x: inherit
3732     | background-position-y: inherit !important
3733     #csstext
3734     p {
3735     background-position-x: inherit;
3736     background-position-y: inherit ! important;
3737     }
3738 wakaba 1.1
3739 wakaba 1.6 #data
3740     p {
3741     background-position-x: inherit;
3742     background-position-y: 50%;
3743     }
3744     #cssom
3745     | <p>
3746     | background-position-x: inherit
3747     | background-position-y: 50%
3748     #csstext
3749     p {
3750     background-position-x: inherit;
3751     background-position-y: 50%;
3752     }
3753 wakaba 1.1
3754 wakaba 1.6 #data
3755     p {
3756     background-position-x: 12.4%;
3757     background-position-y: inherit;
3758     }
3759     #cssom
3760     | <p>
3761     | background-position-x: 12.4%
3762     | background-position-y: inherit
3763     #csstext
3764     p {
3765     background-position-x: 12.4%;
3766     background-position-y: inherit;
3767     }
3768    
3769     #data
3770     p {
3771     background-position: 12.3% 3px;
3772     }
3773     #cssom
3774     | <p>
3775     | background-position: 12.3% 3px
3776     | background-position-x: 12.3%
3777     | background-position-y: 3px
3778     #csstext
3779     p {
3780     background-position: 12.3% 3px;
3781     }
3782    
3783     #data
3784     p {
3785     background-position-x: 12.3%;
3786     background-position-y: 3px ! important;
3787     }
3788     #cssom
3789     | <p>
3790     | background-position-x: 12.3%
3791     | background-position-y: 3px !important
3792     #csstext
3793     p {
3794     background-position-x: 12.3%;
3795     background-position-y: 3px ! important;
3796     }
3797    
3798     #data
3799     p {
3800     background-position-x: 12.3% ! important;
3801     background-position-y: 3px;
3802     }
3803     #cssom
3804     | <p>
3805     | background-position-x: 12.3% !important
3806     | background-position-y: 3px
3807     #csstext
3808     p {
3809     background-position-x: 12.3% ! important;
3810     background-position-y: 3px;
3811     }
3812    
3813     #data
3814     p {
3815     background-position-x: 12.3% !important;
3816     background-position-y: 3px ! important;
3817     }
3818     #cssom
3819     | <p>
3820     | background-position: 12.3% 3px !important
3821     | background-position-x: 12.3% !important
3822     | background-position-y: 3px !important
3823     #csstext
3824     p {
3825     background-position: 12.3% 3px ! important;
3826     }
3827    
3828     #data
3829     p {
3830 wakaba 1.9 background-position: +12px +34px;
3831     }
3832     #cssom
3833     | <p>
3834     | background-position: 12px 34px
3835     | background-position-x: 12px
3836     | background-position-y: 34px
3837    
3838     #data
3839     p {
3840     background-position: -12px -34px;
3841     }
3842     #cssom
3843     | <p>
3844     | background-position: -12px -34px
3845     | background-position-x: -12px
3846     | background-position-y: -34px
3847    
3848     #data
3849     p {
3850     background-position: left +34px;
3851     }
3852     #cssom
3853     | <p>
3854     | background-position: left 34px
3855     | background-position-x: left
3856     | background-position-y: 34px
3857    
3858     #data
3859     p {
3860     background-position: +12px bottom
3861     }
3862     #cssom
3863     | <p>
3864     | background-position: 12px bottom
3865     | background-position-x: 12px
3866     | background-position-y: bottom
3867    
3868     #data
3869     p {
3870     background-position: +12px
3871     }
3872     #cssom
3873     | <p>
3874     | background-position: 12px 50%
3875     | background-position-x: 12px
3876     | background-position-y: 50%
3877    
3878     #data
3879     p {
3880     background-position: +12px left;
3881     }
3882     #errors
3883     ;2;30;m;no property semicolon
3884     #cssom
3885     | <p>
3886    
3887     #data
3888     p {
3889     background-position: 12px +top;
3890     }
3891     #errors
3892 wakaba 1.15 ;2;30;m;CSS syntax error;'background-position'
3893 wakaba 1.9 #cssom
3894     | <p>
3895    
3896     #data
3897     p {
3898 wakaba 1.14 background-position: top left;
3899     }
3900     #cssom
3901     | <p>
3902     | background-position: left top
3903     | background-position-x: left
3904     | background-position-y: top
3905    
3906     #data
3907     p {
3908     background-position: top right;
3909     }
3910     #cssom
3911     | <p>
3912     | background-position: right top
3913     | background-position-x: right
3914     | background-position-y: top
3915    
3916     #data
3917     p {
3918     background-position: bottom left;
3919     }
3920     #cssom
3921     | <p>
3922     | background-position: left bottom
3923     | background-position-x: left
3924     | background-position-y: bottom
3925    
3926     #data
3927     p {
3928     background-position: bottom right;
3929     }
3930     #cssom
3931     | <p>
3932     | background-position: right bottom
3933     | background-position-x: right
3934     | background-position-y: bottom
3935    
3936     #data
3937     p {
3938     background-position: center left;
3939     }
3940     #cssom
3941     | <p>
3942     | background-position: left center
3943     | background-position-x: left
3944     | background-position-y: center
3945    
3946     #data
3947     p {
3948     background-position: center right;
3949     }
3950     #cssom
3951     | <p>
3952     | background-position: right center
3953     | background-position-x: right
3954     | background-position-y: center
3955    
3956     #data
3957     p {
3958 wakaba 1.6 background:;
3959     }
3960     #errors
3961 wakaba 1.15 ;2;14;m;CSS syntax error;'background'
3962 wakaba 1.6 #cssom
3963     | <p>
3964    
3965     #data
3966     p {
3967     background:
3968     #errors
3969 wakaba 1.15 ;2;14;m;CSS syntax error;'background'
3970 wakaba 1.6 ;2;14;m;block not closed
3971     #cssom
3972     | <p>
3973    
3974     #data
3975     p {
3976     background: -;
3977     }
3978     #errors
3979 wakaba 1.15 ;2;16;m;CSS syntax error;'background'
3980 wakaba 1.6 #cssom
3981     | <p>
3982    
3983     #data
3984     p {
3985     background: +;
3986     }
3987     #errors
3988 wakaba 1.15 ;2;16;m;CSS syntax error;'background'
3989 wakaba 1.6 #cssom
3990     | <p>
3991    
3992     #data
3993     p {
3994     background: +
3995     #errors
3996 wakaba 1.15 ;2;16;m;CSS syntax error;'background'
3997 wakaba 1.6 ;2;16;m;block not closed
3998     #cssom
3999     | <p>
4000    
4001     #data
4002     p {
4003     background: none;
4004     }
4005     #cssom
4006     | <p>
4007     | background: transparent none repeat scroll 0% 0%
4008     | background-attachment: scroll
4009     | background-color: transparent
4010     | background-image: none
4011     | background-position: 0% 0%
4012     | background-position-x: 0%
4013     | background-position-y: 0%
4014     | background-repeat: repeat
4015     #csstext
4016     p {
4017     background: transparent none repeat scroll 0% 0%;
4018     }
4019    
4020     #data
4021     p {
4022     background: url(bg);
4023     }
4024     #cssom
4025     | <p>
4026     | background: url(bg)
4027     | background-attachment: scroll
4028     | background-color: transparent
4029     | background-image: url(bg)
4030     | background-position: 0% 0%
4031     | background-position-x: 0%
4032     | background-position-y: 0%
4033     | background-repeat: repeat
4034     #csstext
4035     p {
4036     background: url(bg);
4037     }
4038     #computed 1 p
4039     -| background: transparent none repeat scroll 0% 0%
4040     +| background: url(thismessage:/bg)
4041     -| background-image: none
4042     +| background-image: url(thismessage:/bg)
4043    
4044     #data
4045     p {
4046     background: -url(bg);
4047     }
4048     #errors
4049 wakaba 1.15 ;2;15;m;CSS syntax error;'background'
4050 wakaba 1.6 #cssom
4051     | <p>
4052    
4053     #data
4054     p {
4055     background: -/**/url(bg);
4056     }
4057     #errors
4058 wakaba 1.15 ;2;20;m;CSS syntax error;'background'
4059 wakaba 1.6 #cssom
4060     | <p>
4061    
4062     #data
4063     p {
4064     background: +url(bg);
4065     }
4066     #errors
4067 wakaba 1.15 ;2;16;m;CSS syntax error;'background'
4068 wakaba 1.6 #cssom
4069     | <p>
4070    
4071     #data
4072     p {
4073     background: 12% url(a);
4074     }
4075     #cssom
4076     | <p>
4077     | background: url(a) 12% 50%
4078     | background-attachment: scroll
4079     | background-color: transparent
4080     | background-image: url(a)
4081     | background-position: 12% 50%
4082     | background-position-x: 12%
4083     | background-position-y: 50%
4084     | background-repeat: repeat
4085    
4086     #data
4087     p {
4088     background: url(a) url(b);
4089     }
4090     #errors
4091     ;2;22;m;no property semicolon
4092     #cssom
4093     | <p>
4094    
4095     #data
4096     p {
4097     background: fixed center;
4098     }
4099     #cssom
4100     | <p>
4101     | background: fixed center center
4102     | background-attachment: fixed
4103     | background-color: transparent
4104     | background-image: none
4105     | background-position: center center
4106     | background-position-x: center
4107     | background-position-y: center
4108     | background-repeat: repeat
4109     #csstext
4110     p {
4111     background: fixed center center;
4112     }
4113    
4114     #data
4115     p {
4116     background: left;
4117     }
4118     #cssom
4119     | <p>
4120     | background: left center
4121     | background-attachment: scroll
4122     | background-color: transparent
4123     | background-image: none
4124     | background-position: left center
4125     | background-position-x: left
4126     | background-position-y: center
4127     | background-repeat: repeat
4128    
4129     #data
4130     p {
4131     background: left 1px;
4132     }
4133     #cssom
4134     | <p>
4135     | background: left 1px
4136     | background-attachment: scroll
4137     | background-color: transparent
4138     | background-image: none
4139     | background-position: left 1px
4140     | background-position-x: left
4141     | background-position-y: 1px
4142     | background-repeat: repeat
4143    
4144     #data
4145     p {
4146     background: left 1%;
4147     }
4148     #cssom
4149     | <p>
4150     | background: left 1%
4151     | background-attachment: scroll
4152     | background-color: transparent
4153     | background-image: none
4154     | background-position: left 1%
4155     | background-position-x: left
4156     | background-position-y: 1%
4157     | background-repeat: repeat
4158    
4159     #data
4160     p {
4161     background: left none;
4162     }
4163     #cssom
4164     | <p>
4165     | background: left center
4166     | background-attachment: scroll
4167     | background-color: transparent
4168     | background-image: none
4169     | background-position: left center
4170     | background-position-x: left
4171     | background-position-y: center
4172     | background-repeat: repeat
4173    
4174     #data
4175     p {
4176     background: left url(a);
4177     }
4178     #cssom
4179     | <p>
4180     | background: url(a) left center
4181     | background-attachment: scroll
4182     | background-color: transparent
4183     | background-image: url(a)
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: left -12px;
4192     }
4193     #cssom
4194     | <p>
4195     | background: left -12px
4196     | background-attachment: scroll
4197     | background-color: transparent
4198     | background-image: none
4199     | background-position: left -12px
4200     | background-position-x: left
4201     | background-position-y: -12px
4202     | background-repeat: repeat
4203    
4204     #data
4205     p {
4206     background: left +12px;
4207     }
4208     #cssom
4209     | <p>
4210     | background: left 12px
4211     | background-attachment: scroll
4212     | background-color: transparent
4213     | background-image: none
4214     | background-position: left 12px
4215     | background-position-x: left
4216     | background-position-y: 12px
4217     | background-repeat: repeat
4218    
4219     #data
4220     p {
4221     background: left +;
4222     }
4223     #errors
4224 wakaba 1.15 ;2;21;m;CSS syntax error;'background'
4225 wakaba 1.6 #cssom
4226     | <p>
4227    
4228     #data
4229     p {
4230     background: left -;
4231     }
4232     #errors
4233 wakaba 1.15 ;2;21;m;CSS syntax error;'background'
4234 wakaba 1.6 #cssom
4235     | <p>
4236    
4237     #data
4238     p {
4239     background: top left;
4240     }
4241     #cssom
4242     | <p>
4243     | background: left top
4244     | background-attachment: scroll
4245     | background-color: transparent
4246     | background-image: none
4247     | background-position: left top
4248     | background-position-x: left
4249     | background-position-y: top
4250     | background-repeat: repeat
4251    
4252     #data
4253     p {
4254     background: top center;
4255     }
4256     #cssom
4257     | <p>
4258     | background: center top
4259     | background-attachment: scroll
4260     | background-color: transparent
4261     | background-image: none
4262     | background-position: center top
4263     | background-position-x: center
4264     | background-position-y: top
4265     | background-repeat: repeat
4266    
4267     #data
4268     p {
4269     background: top right;
4270     }
4271     #cssom
4272     | <p>
4273     | background: right top
4274     | background-attachment: scroll
4275     | background-color: transparent
4276     | background-image: none
4277     | background-position: right top
4278     | background-position-x: right
4279     | background-position-y: top
4280     | background-repeat: repeat
4281    
4282     #data
4283     p {
4284     background: bottom left;
4285     }
4286     #cssom
4287     | <p>
4288     | background: left bottom
4289     | background-attachment: scroll
4290     | background-color: transparent
4291     | background-image: none
4292     | background-position: left bottom
4293     | background-position-x: left
4294     | background-position-y: bottom
4295     | background-repeat: repeat
4296    
4297     #data
4298     p {
4299     background: bottom center;
4300     }
4301     #cssom
4302     | <p>
4303     | background: center bottom
4304     | background-attachment: scroll
4305     | background-color: transparent
4306     | background-image: none
4307     | background-position: center bottom
4308     | background-position-x: center
4309     | background-position-y: bottom
4310     | background-repeat: repeat
4311    
4312     #data
4313     p {
4314     background: bottom right;
4315     }
4316     #cssom
4317     | <p>
4318     | background: right bottom
4319     | background-attachment: scroll
4320     | background-color: transparent
4321     | background-image: none
4322     | background-position: right bottom
4323     | background-position-x: right
4324     | background-position-y: bottom
4325 wakaba 1.14 | background-repeat: repeat
4326    
4327     #data
4328     p {
4329     background: center right;
4330     }
4331     #cssom
4332     | <p>
4333     | background: right center
4334     | background-attachment: scroll
4335     | background-color: transparent
4336     | background-image: none
4337     | background-position: right center
4338     | background-position-x: right
4339     | background-position-y: center
4340     | background-repeat: repeat
4341    
4342     #data
4343     p {
4344     background: center left;
4345     }
4346     #cssom
4347     | <p>
4348     | background: left center
4349     | background-attachment: scroll
4350     | background-color: transparent
4351     | background-image: none
4352     | background-position: left center
4353     | background-position-x: left
4354     | background-position-y: center
4355     | background-repeat: repeat
4356    
4357     #data
4358     p {
4359     background: center center;
4360     }
4361     #cssom
4362     | <p>
4363     | background: center center
4364     | background-attachment: scroll
4365     | background-color: transparent
4366     | background-image: none
4367     | background-position: center center
4368     | background-position-x: center
4369     | background-position-y: center
4370 wakaba 1.6 | background-repeat: repeat
4371    
4372     #data
4373     p {
4374     background: top -12px;
4375     }
4376     #errors
4377 wakaba 1.15 ;2;20;m;CSS syntax error;'background'
4378 wakaba 1.6 #cssom
4379     | <p>
4380    
4381     #data
4382     p {
4383     background: top +12px;
4384     }
4385     #errors
4386 wakaba 1.15 ;2;20;m;CSS syntax error;'background'
4387 wakaba 1.6 #cssom
4388     | <p>
4389    
4390     #data
4391     p {
4392     background: -12px;
4393     }
4394     #cssom
4395     | <p>
4396     | background: -12px 50%
4397     | background-attachment: scroll
4398     | background-color: transparent
4399     | background-image: none
4400     | background-position: -12px 50%
4401     | background-position-x: -12px
4402     | background-position-y: 50%
4403     | background-repeat: repeat
4404    
4405     #data
4406     p {
4407     background: +12px;
4408     }
4409     #cssom
4410     | <p>
4411     | background: 12px 50%
4412     | background-attachment: scroll
4413     | background-color: transparent
4414     | background-image: none
4415     | background-position: 12px 50%
4416     | background-position-x: 12px
4417     | background-position-y: 50%
4418     | background-repeat: repeat
4419    
4420     #data
4421     p {
4422     background: 2% bottom;
4423     }
4424     #cssom
4425     | <p>
4426     | background: 2% bottom
4427     | background-attachment: scroll
4428     | background-color: transparent
4429     | background-image: none
4430     | background-position: 2% bottom
4431     | background-position-x: 2%
4432     | background-position-y: bottom
4433     | background-repeat: repeat
4434    
4435     #data
4436     p {
4437     background: 2% left;
4438     }
4439     #errors
4440 wakaba 1.15 ;2;18;m;CSS syntax error;color
4441 wakaba 1.6 #cssom
4442     | <p>
4443    
4444     #data
4445     p {
4446     background: none;
4447     background-attachment: scroll ! important;
4448     }
4449     #cssom
4450     | <p>
4451     | background-attachment: scroll !important
4452     | background-color: transparent
4453     | background-image: none
4454     | background-position: 0% 0%
4455     | background-position-x: 0%
4456     | background-position-y: 0%
4457     | background-repeat: repeat
4458     #csstext
4459     p {
4460     background-attachment: scroll ! important;
4461     background-color: transparent;
4462     background-image: none;
4463     background-position: 0% 0%;
4464     background-repeat: repeat;
4465     }
4466    
4467     #data
4468     p {
4469     background: 0 -12px;
4470     }
4471     #cssom
4472     | <p>
4473     | background: 0px -12px
4474     | background-attachment: scroll
4475     | background-color: transparent
4476     | background-image: none
4477     | background-position: 0px -12px
4478     | background-position-x: 0px
4479     | background-position-y: -12px
4480     | background-repeat: repeat
4481    
4482     #data
4483     p {
4484     background: 0 +12px;
4485     }
4486     #cssom
4487     | <p>
4488     | background: 0px 12px
4489     | background-attachment: scroll
4490     | background-color: transparent
4491     | background-image: none
4492     | background-position: 0px 12px
4493     | background-position-x: 0px
4494     | background-position-y: 12px
4495     | background-repeat: repeat
4496    
4497     #data
4498     p {
4499     background: none;
4500     background-color: red ! important;
4501     }
4502     #cssom
4503     | <p>
4504     | background-attachment: scroll
4505     | background-color: red !important
4506     | background-image: none
4507     | background-position: 0% 0%
4508     | background-position-x: 0%
4509     | background-position-y: 0%
4510     | background-repeat: repeat
4511     #csstext
4512     p {
4513     background-attachment: scroll;
4514     background-color: red ! important;
4515     background-image: none;
4516     background-position: 0% 0%;
4517     background-repeat: repeat;
4518     }
4519    
4520     #data
4521     p {
4522     background: none ! important;
4523     background-color: transparent ! important;
4524     }
4525     #cssom
4526     | <p>
4527     | background: transparent none repeat scroll 0% 0% !important
4528     | background-attachment: scroll !important
4529     | background-color: transparent !important
4530     | background-image: none !important
4531     | background-position: 0% 0% !important
4532     | background-position-x: 0% !important
4533     | background-position-y: 0% !important
4534     | background-repeat: repeat !important
4535     #csstext
4536     p {
4537     background: transparent none repeat scroll 0% 0% ! important;
4538     }
4539    
4540     #data
4541     p {
4542     background: none !important;
4543     background-color: blue;
4544     }
4545     #cssom
4546     | <p>
4547     | background: transparent none repeat scroll 0% 0% !important
4548     | background-attachment: scroll !important
4549     | background-color: transparent !important
4550     | background-image: none !important
4551     | background-position: 0% 0% !important
4552     | background-position-x: 0% !important
4553     | background-position-y: 0% !important
4554     | background-repeat: repeat !important
4555     #csstext
4556     p {
4557     background: transparent none repeat scroll 0% 0% ! important;
4558     }
4559    
4560     #data
4561     p {
4562     background: none;
4563     background-image: none ! important;
4564     }
4565     #cssom
4566     | <p>
4567     | background-attachment: scroll
4568     | background-color: transparent
4569     | background-image: none !important
4570     | background-position: 0% 0%
4571     | background-position-x: 0%
4572     | background-position-y: 0%
4573     | background-repeat: repeat
4574     #csstext
4575     p {
4576     background-attachment: scroll;
4577     background-color: transparent;
4578     background-image: none ! important;
4579     background-position: 0% 0%;
4580     background-repeat: repeat;
4581     }
4582    
4583     #data
4584     p {
4585     background: none;
4586     background-position: left top !important;
4587     }
4588     #cssom
4589     | <p>
4590     | background-attachment: scroll
4591     | background-color: transparent
4592     | background-image: none
4593     | background-position: left top !important
4594     | background-position-x: left !important
4595     | background-position-y: top !important
4596     | background-repeat: repeat
4597     #csstext
4598     p {
4599     background-attachment: scroll;
4600     background-color: transparent;
4601     background-image: none;
4602     background-position: left top ! important;
4603     background-repeat: repeat;
4604     }
4605    
4606     #data
4607     p {
4608     background: none;
4609     background-position-x: left !important;
4610     }
4611     #cssom
4612     | <p>
4613     | background-attachment: scroll
4614     | background-color: transparent
4615     | background-image: none
4616     | background-position-x: left !important
4617     | background-position-y: 0%
4618     | background-repeat: repeat
4619     #csstext
4620     p {
4621     background-attachment: scroll;
4622     background-color: transparent;
4623     background-image: none;
4624     background-position-x: left ! important;
4625     background-position-y: 0%;
4626     background-repeat: repeat;
4627     }
4628    
4629     #data
4630     p {
4631     background: none;
4632     background-position-y: 12% !important;
4633     }
4634     #cssom
4635     | <p>
4636     | background-attachment: scroll
4637     | background-color: transparent
4638     | background-image: none
4639     | background-position-x: 0%
4640     | background-position-y: 12% !important
4641     | background-repeat: repeat
4642     #csstext
4643     p {
4644     background-attachment: scroll;
4645     background-color: transparent;
4646     background-image: none;
4647     background-position-x: 0%;
4648     background-position-y: 12% ! important;
4649     background-repeat: repeat;
4650     }
4651    
4652     #data
4653     p {
4654     background: none;
4655     background-repeat: no-repeat ! important;
4656     }
4657     #cssom
4658     | <p>
4659     | background-attachment: scroll
4660     | background-color: transparent
4661     | background-image: none
4662     | background-position: 0% 0%
4663     | background-position-x: 0%
4664     | background-position-y: 0%
4665     | background-repeat: no-repeat !important
4666     #csstext
4667     p {
4668     background-attachment: scroll;
4669     background-color: transparent;
4670     background-image: none;
4671     background-position: 0% 0%;
4672     background-repeat: no-repeat ! important;
4673     }
4674    
4675     #data
4676     p {
4677     background: none !important;
4678     }
4679     #cssom
4680     | <p>
4681     | background: transparent none repeat scroll 0% 0% !important
4682     | background-attachment: scroll !important
4683     | background-color: transparent !important
4684     | background-image: none !important
4685     | background-position: 0% 0% !important
4686     | background-position-x: 0% !important
4687     | background-position-y: 0% !important
4688     | background-repeat: repeat !important
4689     #csstext
4690     p {
4691     background: transparent none repeat scroll 0% 0% ! important;
4692     }
4693    
4694     #data
4695     p {
4696     background: none;
4697     background-image: inherit;
4698     }
4699     #cssom
4700     | <p>
4701     | background-attachment: scroll
4702     | background-color: transparent
4703     | background-image: inherit
4704     | background-position: 0% 0%
4705     | background-position-x: 0%
4706     | background-position-y: 0%
4707     | background-repeat: repeat
4708     #csstext
4709     p {
4710     background-attachment: scroll;
4711     background-color: transparent;
4712     background-image: inherit;
4713     background-position: 0% 0%;
4714     background-repeat: repeat;
4715     }
4716    
4717     #data
4718     p {
4719     background: inherit;
4720     }
4721     #cssom
4722     | <p>
4723     | background: inherit
4724     | background-attachment: inherit
4725     | background-color: inherit
4726     | background-image: inherit
4727     | background-position: inherit
4728     | background-position-x: inherit
4729     | background-position-y: inherit
4730     | background-repeat: inherit
4731     #csstext
4732     p {
4733     background: inherit;
4734     }
4735    
4736     #data
4737     p {
4738     background: none;
4739     background-color: inherit;
4740     }
4741     #cssom
4742     | <p>
4743     | background-attachment: scroll
4744     | background-color: inherit
4745     | background-image: none
4746     | background-position: 0% 0%
4747     | background-position-x: 0%
4748     | background-position-y: 0%
4749     | background-repeat: repeat
4750     #csstext
4751     p {
4752     background-attachment: scroll;
4753     background-color: inherit;
4754     background-image: none;
4755     background-position: 0% 0%;
4756     background-repeat: repeat;
4757     }
4758    
4759     #data
4760     p {
4761     background: none;
4762     background-position: inherit;
4763     }
4764     #cssom
4765     | <p>
4766     | background-attachment: scroll
4767     | background-color: transparent
4768     | background-image: none
4769     | background-position: inherit
4770     | background-position-x: inherit
4771     | background-position-y: inherit
4772     | background-repeat: repeat
4773     #csstext
4774     p {
4775     background-attachment: scroll;
4776     background-color: transparent;
4777     background-image: none;
4778     background-position: inherit;
4779     background-repeat: repeat;
4780     }
4781    
4782     #data
4783     p {
4784     background: inherit;
4785     background-position-y: -13%;
4786     }
4787     #cssom
4788     | <p>
4789     | background-attachment: inherit
4790     | background-color: inherit
4791     | background-image: inherit
4792     | background-position-x: inherit
4793     | background-position-y: -13%
4794     | background-repeat: inherit
4795     #csstext
4796     p {
4797     background-attachment: inherit;
4798     background-color: inherit;
4799     background-image: inherit;
4800     background-position-x: inherit;
4801     background-position-y: -13%;
4802     background-repeat: inherit;
4803     }
4804    
4805     #data
4806     p {
4807     background: blue;
4808     background-position: inherit;
4809     }
4810     #cssom
4811     | <p>
4812     | background-attachment: scroll
4813     | background-color: blue
4814     | background-image: none
4815     | background-position: inherit
4816     | background-position-x: inherit
4817     | background-position-y: inherit
4818     | background-repeat: repeat
4819     #csstext
4820     p {
4821     background-attachment: scroll;
4822     background-color: blue;
4823     background-image: none;
4824     background-position: inherit;
4825     background-repeat: repeat;
4826     }
4827    
4828     #data
4829     p {
4830     background: inherit;
4831     background-position-x: -13%;
4832     }
4833     #cssom
4834     | <p>
4835     | background-attachment: inherit
4836     | background-color: inherit
4837     | background-image: inherit
4838     | background-position-x: -13%
4839     | background-position-y: inherit
4840     | background-repeat: inherit
4841     #csstext
4842     p {
4843     background-attachment: inherit;
4844     background-color: inherit;
4845     background-image: inherit;
4846     background-position-x: -13%;
4847     background-position-y: inherit;
4848     background-repeat: inherit;
4849     }
4850    
4851     #data
4852     p {
4853     background: blue;
4854     background-position-y: inherit;
4855     }
4856     #cssom
4857     | <p>
4858     | background-attachment: scroll
4859     | background-color: blue
4860     | background-image: none
4861     | background-position-x: 0%
4862     | background-position-y: inherit
4863     | background-repeat: repeat
4864     #csstext
4865     p {
4866     background-attachment: scroll;
4867     background-color: blue;
4868     background-image: none;
4869     background-position-x: 0%;
4870     background-position-y: inherit;
4871     background-repeat: repeat;
4872     }
4873    
4874     #data
4875     p {
4876     background: blue;
4877     background-position: inherit;
4878     background-position-y: inherit ! important;
4879     }
4880     #cssom
4881     | <p>
4882     | background-attachment: scroll
4883     | background-color: blue
4884     | background-image: none
4885     | background-position-x: inherit
4886     | background-position-y: inherit !important
4887     | background-repeat: repeat
4888     #csstext
4889     p {
4890     background-attachment: scroll;
4891     background-color: blue;
4892     background-image: none;
4893     background-position-x: inherit;
4894     background-position-y: inherit ! important;
4895     background-repeat: repeat;
4896     }
4897    
4898     #data
4899     p {
4900     background: none;
4901     background-repeat: inherit;
4902     }
4903     #cssom
4904     | <p>
4905     | background-attachment: scroll
4906     | background-color: transparent
4907     | background-image: none
4908     | background-position: 0% 0%
4909     | background-position-x: 0%
4910     | background-position-y: 0%
4911     | background-repeat: inherit
4912     #csstext
4913     p {
4914     background-attachment: scroll;
4915     background-color: transparent;
4916     background-image: none;
4917     background-position: 0% 0%;
4918     background-repeat: inherit;
4919     }
4920 wakaba 1.10
4921     #data
4922     p {
4923     opacity: 0.4;
4924     }
4925     #cssom
4926     | <p>
4927     | -moz-opacity: 0.4
4928     | opacity: 0.4
4929     #csstext
4930     p {
4931     opacity: 0.4;
4932     }
4933    
4934     #data
4935     p {
4936     opacity: +0.4;
4937     }
4938     #cssom
4939     | <p>
4940     | -moz-opacity: 0.4
4941     | opacity: 0.4
4942     #csstext
4943     p {
4944     opacity: 0.4;
4945     }
4946    
4947     #data
4948     p {
4949     opacity: 0.40000;
4950     }
4951     #cssom
4952     | <p>
4953     | -moz-opacity: 0.4
4954     | opacity: 0.4
4955     #csstext
4956     p {
4957     opacity: 0.4;
4958     }
4959    
4960     #data
4961     p {
4962     opacity: 0000000.4;
4963     }
4964     #cssom
4965     | <p>
4966     | -moz-opacity: 0.4
4967     | opacity: 0.4
4968     #csstext
4969     p {
4970     opacity: 0.4;
4971     }
4972    
4973     #data
4974     p {
4975     opacity: 0.0000;
4976     }
4977     #cssom
4978     | <p>
4979     | -moz-opacity: 0
4980     | opacity: 0
4981     #csstext
4982     p {
4983     opacity: 0;
4984     }
4985    
4986     #data
4987     p {
4988     opacity: 00000;
4989     }
4990     #cssom
4991     | <p>
4992     | -moz-opacity: 0
4993     | opacity: 0
4994     #csstext
4995     p {
4996     opacity: 0;
4997     }
4998    
4999     #data
5000     p {
5001     opacity: +0;
5002     }
5003     #cssom
5004     | <p>
5005     | -moz-opacity: 0
5006     | opacity: 0
5007     #csstext
5008     p {
5009     opacity: 0;
5010     }
5011    
5012     #data
5013     p {
5014     opacity: -0;
5015     }
5016     #cssom
5017     | <p>
5018     | -moz-opacity: 0
5019     | opacity: 0
5020     #csstext
5021     p {
5022     opacity: 0;
5023     }
5024    
5025     #data
5026     p {
5027     opacity: inherit;
5028     }
5029     #cssom
5030     | <p>
5031     | -moz-opacity: inherit
5032     | opacity: inherit
5033     #csstext
5034     p {
5035     opacity: inherit;
5036     }
5037    
5038     #data
5039     p {
5040     opacity: +inherit;
5041     }
5042     #errors
5043 wakaba 1.15 ;2;13;m;CSS syntax error;'opacity'
5044 wakaba 1.10 #cssom
5045     | <p>
5046    
5047     #data
5048     p {
5049     -moz-opacity: 0;
5050     }
5051     #cssom
5052     | <p>
5053     | -moz-opacity: 0
5054     | opacity: 0
5055     #csstext
5056     p {
5057     opacity: 0;
5058     }
5059    
5060     #data
5061     p {
5062     -moz-opacity: 0.4;
5063     }
5064     #cssom
5065     | <p>
5066     | -moz-opacity: 0.4
5067     | opacity: 0.4
5068     #csstext
5069     p {
5070     opacity: 0.4;
5071     }
5072    
5073     #data
5074     p {
5075     -moz-opacity: inherit;
5076     }
5077     #cssom
5078     | <p>
5079     | -moz-opacity: inherit
5080     | opacity: inherit
5081     #csstext
5082     p {
5083     opacity: inherit;
5084     }
5085    
5086     #data
5087     p {
5088     -moz-opacity: +inherit;
5089     }
5090     #errors
5091 wakaba 1.15 ;2;18;m;CSS syntax error;'-moz-opacity'
5092 wakaba 1.10 #cssom
5093     | <p>

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24