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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Sat Jan 26 14:48:09 2008 UTC (16 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.3: +168 -0 lines
++ whatpm/t/ChangeLog	26 Jan 2008 14:46:58 -0000
	* css-font.dat: New test data for 'font-weight'
	and 'font-size' are added.

	* css-visual.dat: New test data for leading and
	trailing zeros are added.

2008-01-26  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/CSS/ChangeLog	26 Jan 2008 14:46:14 -0000
	* Parser.pm ('font-weight' parser): Support for '+'.

	* Tokenizer.pm: Normalize number stored in |NUMBER_TOKEN|,
	|PERCENTAGE_TOKEN|, and |DIMENSION_TOKEN|.

2008-01-26  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 #html 1
2     <!DOCTYPE HTML><p>
3    
4     #data
5     p {
6     font-family: serif;
7     }
8     #cssom
9     | <p>
10     | font-family: serif
11     #csstext
12     p {
13     font-family: serif;
14     }
15    
16     #data
17     p {
18     font-family: a,serif;
19     }
20     #cssom
21     | <p>
22     | font-family: "a", serif
23     #csstext
24     p {
25     font-family: "a", serif;
26     }
27    
28     #data
29     p {
30     font-family: serif,a;
31     }
32     #cssom
33     | <p>
34     | font-family: serif, "a"
35     #csstext
36     p {
37     font-family: serif, "a";
38     }
39    
40     #data
41     p {
42     font-family: serifA;
43     }
44     #cssom
45     | <p>
46     | font-family: "serifA"
47     #csstext
48     p {
49     font-family: "serifA";
50     }
51    
52     #data
53     p {
54     font-family: inherit;
55     }
56     #cssom
57     | <p>
58     | font-family: inherit
59     #csstext
60     p {
61     font-family: inherit;
62     }
63     #computed 1 p
64     #computedtext 1 p
65    
66     #data
67     p {
68     font-family: inherit, a;
69     }
70     #cssom
71     | <p>
72     | font-family: "inherit", "a"
73     #csstext
74     p {
75     font-family: "inherit", "a";
76     }
77    
78     #data
79     p {
80     font-family: a,inherit;
81     }
82     #cssom
83     | <p>
84     | font-family: "a", "inherit"
85     #csstext
86     p {
87     font-family: "a", "inherit";
88     }
89    
90     #data
91     p {
92     font-family: "inherit";
93     }
94     #cssom
95     | <p>
96     | font-family: "inherit"
97     #csstext
98     p {
99     font-family: "inherit";
100     }
101    
102     #data
103     p {
104     font-family: inherit a;
105     }
106     #cssom
107     | <p>
108     | font-family: "inherit a"
109     #csstext
110     p {
111     font-family: "inherit a";
112     }
113    
114     #data
115     p {
116 wakaba 1.4 font-weight: bold;
117     }
118     #cssom
119     | <p>
120     | font-weight: bold
121     #csstext
122     p {
123     font-weight: bold;
124     }
125    
126     #data
127     p {
128     font-weight: normal;
129     }
130     #cssom
131     | <p>
132     | font-weight: normal
133     #csstext
134     p {
135     font-weight: normal;
136     }
137    
138     #data
139     p {
140     font-weight: bolder;
141     }
142     #cssom
143     | <p>
144     | font-weight: bolder
145     #csstext
146     p {
147     font-weight: bolder;
148     }
149    
150     #data
151     p {
152     font-weight: lighter;
153     }
154     #cssom
155     | <p>
156     | font-weight: lighter
157     #csstext
158     p {
159     font-weight: lighter;
160     }
161    
162     #data
163     p {
164     font-weight: light;
165     }
166     #errors
167     ;2;16;m;syntax error:'font-weight'
168     #cssom
169     | <p>
170    
171     #data
172     p {
173     font-weight: inherit;
174     }
175     #cssom
176     | <p>
177     | font-weight: inherit
178     #csstext
179     p {
180     font-weight: inherit;
181     }
182    
183     #data
184     p {
185     font-weight: 100;
186     }
187     #cssom
188     | <p>
189     | font-weight: 100
190     #csstext
191     p {
192     font-weight: 100;
193     }
194    
195     #data
196     p {
197     font-weight: +100;
198     }
199     #cssom
200     | <p>
201     | font-weight: 100
202     #csstext
203     p {
204     font-weight: 100;
205     }
206    
207     #data
208     p {
209     font-weight: +100.0;
210     }
211     #cssom
212     | <p>
213     | font-weight: 100
214     #csstext
215     p {
216     font-weight: 100;
217     }
218    
219     #data
220     p {
221     font-weight: -200;
222     }
223     #errors
224     ;2;16;m;syntax error:'font-weight'
225     #cssom
226     | <p>
227    
228     #data
229     p {
230     font-weight: 000100;
231     }
232     #cssom
233     | <p>
234     | font-weight: 100
235     #csstext
236     p {
237     font-weight: 100;
238     }
239    
240     #data
241     p {
242     font-weight: +bold
243     }
244     #errors
245     ;2;17;m;syntax error:'font-weight'
246     #cssom
247     | <p>
248    
249     #data
250     p {
251     font-weight: +inherit;
252     }
253     #errors
254     ;2;17;m;syntax error:'font-weight'
255     #cssom
256     | <p>
257    
258     #data
259     p {
260 wakaba 1.3 font-size: 0;
261     }
262     #cssom
263     | <p>
264     | font-size: 0px
265     #csstext
266     p {
267     font-size: 0px;
268     }
269    
270     #data
271     p {
272     font-size: -0;
273     }
274     #cssom
275     | <p>
276     | font-size: 0px
277     #csstext
278     p {
279     font-size: 0px;
280     }
281    
282     #data
283     p {
284     font-size: +0;
285     }
286     #cssom
287     | <p>
288     | font-size: 0px
289     #csstext
290     p {
291     font-size: 0px;
292     }
293    
294     #data
295     p {
296     font-size: 12;
297     }
298     #errors
299     ;2;14;m;syntax error:'font-size'
300     #cssom
301     | <p>
302     #csstext
303     p {
304     }
305    
306     #data
307     p {
308     font-size: 12;
309     }
310     #option q
311     #cssom
312     | <p>
313     | font-size: 12px
314     #csstext
315     p {
316     font-size: 12px;
317     }
318    
319     #data
320     p {
321     font-size: +12;
322     }
323     #errors
324     ;2;15;m;syntax error:'font-size'
325     #cssom
326     | <p>
327     #csstext
328     p {
329     }
330    
331     #data
332     p {
333     font-size: +12;
334     }
335     #option q
336     #cssom
337     | <p>
338     | font-size: 12px
339     #csstext
340     p {
341     font-size: 12px;
342     }
343    
344     #data
345     p {
346     font-size: .12px;
347     }
348     #cssom
349     | <p>
350     | font-size: 0.12px
351     #csstext
352     p {
353     font-size: 0.12px;
354     }
355    
356     #data
357     p {
358     font-size: 12px;
359     }
360     #cssom
361     | <p>
362     | font-size: 12px
363     #csstext
364     p {
365     font-size: 12px;
366     }
367    
368     #data
369     p {
370     font-size: 12px ! important ;
371     }
372     #cssom
373     | <p>
374     | font-size: 12px !important
375     #csstext
376     p {
377     font-size: 12px ! important;
378     }
379    
380     #data
381     p {
382     font-size: 12%;
383     }
384     #cssom
385     | <p>
386     | font-size: 12%
387     #csstext
388     p {
389     font-size: 12%;
390     }
391    
392     #data
393     p {
394     font-size: 12cm;
395     }
396     #cssom
397     | <p>
398     | font-size: 12cm
399     #csstext
400     p {
401     font-size: 12cm;
402     }
403    
404     #data
405     p {
406     font-size: 12em;
407     }
408     #cssom
409     | <p>
410     | font-size: 12em
411     #csstext
412     p {
413     font-size: 12em;
414     }
415    
416     #data
417     p {
418     font-size: inherit;
419     }
420     #cssom
421     | <p>
422     | font-size: inherit
423     #csstext
424     p {
425     font-size: inherit;
426     }
427    
428     #data
429     p {
430     font-size: inherit!important;
431     }
432     #cssom
433     | <p>
434     | font-size: inherit !important
435     #csstext
436     p {
437     font-size: inherit ! important;
438     }
439    
440     #data
441     p {
442     font-size: +inherit;
443     }
444     #errors
445     ;2;15;m;syntax error:'font-size'
446     #cssom
447     | <p>
448    
449     #data
450     p {
451     font-size: -inherit;
452     }
453     #errors
454     ;2;14;m;syntax error:'font-size'
455     #cssom
456     | <p>
457    
458     #data
459     p {
460     font-size: -/**/inherit;
461     }
462     #errors
463     ;2;19;m;syntax error:'font-size'
464     #cssom
465     | <p>
466    
467     #data
468     p {
469     font-size: xx-small;
470     }
471     #cssom
472     | <p>
473     | font-size: xx-small
474     #csstext
475     p {
476     font-size: xx-small;
477     }
478    
479     #data
480     p {
481     font-size: x-small;
482     }
483     #cssom
484     | <p>
485     | font-size: x-small
486     #csstext
487     p {
488     font-size: x-small;
489     }
490    
491     #data
492     p {
493     font-size: small;
494     }
495     #cssom
496     | <p>
497     | font-size: small
498     #csstext
499     p {
500     font-size: small;
501     }
502    
503     #data
504     p {
505     font-size: medium;
506     }
507     #cssom
508     | <p>
509     | font-size: medium
510     #csstext
511     p {
512     font-size: medium;
513     }
514    
515     #data
516     p {
517     font-size: large;
518     }
519     #cssom
520     | <p>
521     | font-size: large
522     #csstext
523     p {
524     font-size: large;
525     }
526    
527     #data
528     p {
529     font-size: x-large;
530     }
531     #cssom
532     | <p>
533     | font-size: x-large
534     #csstext
535     p {
536     font-size: x-large;
537     }
538    
539     #data
540     p {
541     font-size: xx-large;
542     }
543     #cssom
544     | <p>
545     | font-size: xx-large
546     #csstext
547     p {
548     font-size: xx-large;
549     }
550    
551     #data
552     p {
553     font-size: -manakai-xxx-large;
554     }
555     #cssom
556     | <p>
557     | font-size: -manakai-xxx-large
558     #csstext
559     p {
560     font-size: -manakai-xxx-large;
561     }
562    
563     #data
564     p {
565     font-size: -webkit-xxx-large;
566     }
567     #cssom
568     | <p>
569     | font-size: -webkit-xxx-large
570     #csstext
571     p {
572     font-size: -webkit-xxx-large;
573 wakaba 1.4 }
574    
575     #data
576     p {
577     font-size: larger
578     }
579     #cssom
580     | <p>
581     | font-size: larger
582     #csstext
583     p {
584     font-size: larger;
585     }
586    
587     #data
588     p {
589     font-size: smaller
590     }
591     #cssom
592     | <p>
593     | font-size: smaller
594     #csstext
595     p {
596     font-size: smaller;
597 wakaba 1.3 }
598    
599     #data
600     p {
601 wakaba 1.1 font: 1px serif;
602     }
603     #cssom
604     | <p>
605     | font: 1px serif
606     | font-family: serif
607     | font-size: 1px
608     | font-style: normal
609     | font-variant: normal
610     | font-weight: normal
611     | line-height: normal
612     #csstext
613     p {
614     font-family: serif;
615     font-size: 1px;
616     font-style: normal;
617     font-variant: normal;
618     font-weight: normal;
619     line-height: normal;
620     }
621    
622     #data
623     p {
624 wakaba 1.2 font: 1px serif !important;
625     }
626     #cssom
627     | <p>
628     | font: 1px serif !important
629     | font-family: serif !important
630     | font-size: 1px !important
631     | font-style: normal !important
632     | font-variant: normal !important
633     | font-weight: normal !important
634     | line-height: normal !important
635     #csstext
636     p {
637     font-family: serif ! important;
638     font-size: 1px ! important;
639     font-style: normal ! important;
640     font-variant: normal ! important;
641     font-weight: normal ! important;
642     line-height: normal ! important;
643     }
644    
645     #data
646     p {
647 wakaba 1.1 font: 1px inherit;
648     }
649     #cssom
650     | <p>
651     | font: 1px "inherit"
652     | font-family: "inherit"
653     | font-size: 1px
654     | font-style: normal
655     | font-variant: normal
656     | font-weight: normal
657     | line-height: normal
658     #csstext
659     p {
660     font-family: "inherit";
661     font-size: 1px;
662     font-style: normal;
663     font-variant: normal;
664     font-weight: normal;
665     line-height: normal;
666     }
667    
668     #data
669     p {
670     font: normal 1px -manakai-default;
671     }
672     #cssom
673     | <p>
674     | font: 1px -manakai-default
675     | font-family: -manakai-default
676     | font-size: 1px
677     | font-style: normal
678     | font-variant: normal
679     | font-weight: normal
680     | line-height: normal
681     #csstext
682     p {
683     font-family: -manakai-default;
684     font-size: 1px;
685     font-style: normal;
686     font-variant: normal;
687     font-weight: normal;
688     line-height: normal;
689     }
690    
691     #data
692     p {
693     font: bolder 1px Courier New;
694     }
695     #cssom
696     | <p>
697     | font: bolder 1px "Courier New"
698     | font-family: "Courier New"
699     | font-size: 1px
700     | font-style: normal
701     | font-variant: normal
702     | font-weight: bolder
703     | line-height: normal
704     #csstext
705     p {
706     font-family: "Courier New";
707     font-size: 1px;
708     font-style: normal;
709     font-variant: normal;
710     font-weight: bolder;
711     line-height: normal;
712     }
713    
714     #data
715     p {
716     font: inherit;
717     }
718     #cssom
719     | <p>
720     | font: inherit
721     | font-family: inherit
722     | font-size: inherit
723     | font-style: inherit
724     | font-variant: inherit
725     | font-weight: inherit
726     | line-height: inherit
727     #csstext
728     p {
729     font-family: inherit;
730     font-size: inherit;
731     font-style: inherit;
732     font-variant: inherit;
733     font-weight: inherit;
734     line-height: inherit;
735 wakaba 1.2 }
736    
737     #data
738     p {
739     font: inherit !important;
740     }
741     #cssom
742     | <p>
743     | font: inherit !important
744     | font-family: inherit !important
745     | font-size: inherit !important
746     | font-style: inherit !important
747     | font-variant: inherit !important
748     | font-weight: inherit !important
749     | line-height: inherit !important
750     #csstext
751     p {
752     font-family: inherit ! important;
753     font-size: inherit ! important;
754     font-style: inherit ! important;
755     font-variant: inherit ! important;
756     font-weight: inherit ! important;
757     line-height: inherit ! important;
758 wakaba 1.1 }
759    
760     #data
761     p {
762     font: inherit;
763     font-family: "inherit";
764     }
765     #cssom
766     | <p>
767     | font-family: "inherit"
768     | font-size: inherit
769     | font-style: inherit
770     | font-variant: inherit
771     | font-weight: inherit
772     | line-height: inherit
773     #csstext
774     p {
775     font-family: "inherit";
776     font-size: inherit;
777     font-style: inherit;
778     font-variant: inherit;
779     font-weight: inherit;
780     line-height: inherit;
781     }
782    
783     #data
784     p {
785     font: inherit;
786     font-size: 16px;
787     }
788     #cssom
789     | <p>
790     | font-family: inherit
791     | font-size: 16px
792     | font-style: inherit
793     | font-variant: inherit
794     | font-weight: inherit
795     | line-height: inherit
796     #csstext
797     p {
798     font-family: inherit;
799     font-size: 16px;
800     font-style: inherit;
801     font-variant: inherit;
802     font-weight: inherit;
803     line-height: inherit;
804     }
805    
806     #data
807     p {
808     font: inherit;
809     font-variant: inherit ! important;
810     }
811     #cssom
812     | <p>
813     | font-family: inherit
814     | font-size: inherit
815     | font-style: inherit
816     | font-variant: inherit !important
817     | font-weight: inherit
818     | line-height: inherit
819     #csstext
820     p {
821     font-family: inherit;
822     font-size: inherit;
823     font-style: inherit;
824     font-variant: inherit ! important;
825     font-weight: inherit;
826     line-height: inherit;
827     }
828    
829     #data
830     p {
831     font: inherit;
832     font-weight: bolder;
833     }
834     #cssom
835     | <p>
836     | font-family: inherit
837     | font-size: inherit
838     | font-style: inherit
839     | font-variant: inherit
840     | font-weight: bolder
841     | line-height: inherit
842     #csstext
843     p {
844     font-family: inherit;
845     font-size: inherit;
846     font-style: inherit;
847     font-variant: inherit;
848     font-weight: bolder;
849     line-height: inherit;
850     }
851    
852 wakaba 1.3 #data
853     p {
854     font: 800 12 serif;
855     }
856     #errors
857     ;2;13;m;syntax error:'font'
858     #cssom
859     | <p>
860     #csstext
861     p {
862     }
863 wakaba 1.1
864 wakaba 1.3 #data
865     p {
866     font: 800 12 serif;
867     }
868     #option q
869     #cssom
870     | <p>
871     | font: 800 12px serif
872     | font-family: serif
873     | font-size: 12px
874     | font-style: normal
875     | font-variant: normal
876     | font-weight: 800
877     | line-height: normal
878     #csstext
879     p {
880     font-family: serif;
881     font-size: 12px;
882     font-style: normal;
883     font-variant: normal;
884     font-weight: 800;
885     line-height: normal;
886     }
887    
888     #data
889     p {
890     font: 800 12px serif;
891     }
892     #cssom
893     | <p>
894     | font: 800 12px serif
895     | font-family: serif
896     | font-size: 12px
897     | font-style: normal
898     | font-variant: normal
899     | font-weight: 800
900     | line-height: normal
901     #csstext
902     p {
903     font-family: serif;
904     font-size: 12px;
905     font-style: normal;
906     font-variant: normal;
907     font-weight: 800;
908     line-height: normal;
909     }
910    
911     #data
912     p {
913     font: 800/**/12px/**/serif;
914     }
915     #cssom
916     | <p>
917     | font: 800 12px serif
918     | font-family: serif
919     | font-size: 12px
920     | font-style: normal
921     | font-variant: normal
922     | font-weight: 800
923     | line-height: normal
924     #csstext
925     p {
926     font-family: serif;
927     font-size: 12px;
928     font-style: normal;
929     font-variant: normal;
930     font-weight: 800;
931     line-height: normal;
932     }
933    
934     #data
935     p {
936     font: 800 +12 serif;
937     }
938     #errors
939     ;2;14;m;syntax error:'font'
940     #cssom
941     | <p>
942     #csstext
943     p {
944     }
945    
946     #data
947     p {
948     font: 800 +12 serif;
949     }
950     #option q
951     #cssom
952     | <p>
953     | font: 800 12px serif
954     | font-family: serif
955     | font-size: 12px
956     | font-style: normal
957     | font-variant: normal
958     | font-weight: 800
959     | line-height: normal
960     #csstext
961     p {
962     font-family: serif;
963     font-size: 12px;
964     font-style: normal;
965     font-variant: normal;
966     font-weight: 800;
967     line-height: normal;
968     }
969    
970     #data
971     p {
972     font: 800 + 12 serif;
973     }
974     #errors
975     ;2;14;m;syntax error:'font'
976     #cssom
977     | <p>
978     #csstext
979     p {
980     }
981    
982     #data
983     p {
984     font: 800 + 12 serif;
985     }
986     #option q
987     #errors
988     ;2;14;m;syntax error:'font'
989     #cssom
990     | <p>
991     #csstext
992     p {
993     }
994 wakaba 1.1
995 wakaba 1.3 #data
996     p {
997     font: +800 12px serif;
998     }
999     #cssom
1000     | <p>
1001     | font: 800 12px serif
1002     | font-family: serif
1003     | font-size: 12px
1004     | font-style: normal
1005     | font-variant: normal
1006     | font-weight: 800
1007     | line-height: normal
1008     #csstext
1009     p {
1010     font-family: serif;
1011     font-size: 12px;
1012     font-style: normal;
1013     font-variant: normal;
1014     font-weight: 800;
1015     line-height: normal;
1016     }
1017 wakaba 1.1
1018 wakaba 1.3 #data
1019     p {
1020     font: -800 12px serif;
1021     }
1022     #errors
1023     ;2;10;m;syntax error:'font'
1024     #cssom
1025     | <p>
1026     #csstext
1027     p {
1028     }
1029    
1030     #data
1031     p {
1032     font: -800 12px serif;
1033     }
1034     #option q
1035     #errors
1036     ;2;10;m;syntax error:'font'
1037     #cssom
1038     | <p>
1039     #csstext
1040     p {
1041     }
1042    
1043     #data
1044     p {
1045     font: -800 serif;
1046     }
1047     #errors
1048     ;2;10;m;syntax error:'font'
1049     #cssom
1050     | <p>
1051     #csstext
1052     p {
1053     }
1054 wakaba 1.1
1055 wakaba 1.3 #data
1056     p {
1057     font: +12 serif;
1058     }
1059     #option q
1060     #cssom
1061     | <p>
1062     | font: 12px serif
1063     | font-family: serif
1064     | font-size: 12px
1065     | font-style: normal
1066     | font-variant: normal
1067     | font-weight: normal
1068     | line-height: normal
1069     #csstext
1070     p {
1071     font-family: serif;
1072     font-size: 12px;
1073     font-style: normal;
1074     font-variant: normal;
1075     font-weight: normal;
1076     line-height: normal;
1077     }
1078 wakaba 1.1
1079 wakaba 1.3 #data
1080     p {
1081     font: +12px serif;
1082     }
1083     #cssom
1084     | <p>
1085     | font: 12px serif
1086     | font-family: serif
1087     | font-size: 12px
1088     | font-style: normal
1089     | font-variant: normal
1090     | font-weight: normal
1091     | line-height: normal
1092     #csstext
1093     p {
1094     font-family: serif;
1095     font-size: 12px;
1096     font-style: normal;
1097     font-variant: normal;
1098     font-weight: normal;
1099     line-height: normal;
1100     }
1101 wakaba 1.1
1102 wakaba 1.3 #data
1103     p {
1104     font: +12% serif;
1105     }
1106     #cssom
1107     | <p>
1108     | font: 12% serif
1109     | font-family: serif
1110     | font-size: 12%
1111     | font-style: normal
1112     | font-variant: normal
1113     | font-weight: normal
1114     | line-height: normal
1115     #csstext
1116     p {
1117     font-family: serif;
1118     font-size: 12%;
1119     font-style: normal;
1120     font-variant: normal;
1121     font-weight: normal;
1122     line-height: normal;
1123     }
1124    
1125     #data
1126     p {
1127     font: normal normal normal 12 serif;
1128     }
1129     #errors
1130     ;2;30;m;syntax error:'font'
1131     #cssom
1132     | <p>
1133    
1134     #data
1135     p {
1136     font: normal normal normal 12 serif;
1137     }
1138     #option q
1139     #cssom
1140     | <p>
1141     | font: 12px serif
1142     | font-family: serif
1143     | font-size: 12px
1144     | font-style: normal
1145     | font-variant: normal
1146     | font-weight: normal
1147     | line-height: normal
1148    
1149     #data
1150     p {
1151     font: normal normal normal 12px serif;
1152     }
1153     #cssom
1154     | <p>
1155     | font: 12px serif
1156     | font-family: serif
1157     | font-size: 12px
1158     | font-style: normal
1159     | font-variant: normal
1160     | font-weight: normal
1161     | line-height: normal
1162    
1163     #data
1164     p {
1165     font: normal normal normal 12% serif;
1166     }
1167     #cssom
1168     | <p>
1169     | font: 12% serif
1170     | font-family: serif
1171     | font-size: 12%
1172     | font-style: normal
1173     | font-variant: normal
1174     | font-weight: normal
1175     | line-height: normal
1176    
1177     #data
1178     p {
1179     font: normal normal normal +12 serif;
1180     }
1181     #errors
1182     ;2;31;m;syntax error:'font'
1183     #cssom
1184     | <p>
1185    
1186     #data
1187     p {
1188     font: normal normal normal +12 serif;
1189     }
1190     #option q
1191     #cssom
1192     | <p>
1193     | font: 12px serif
1194     | font-family: serif
1195     | font-size: 12px
1196     | font-style: normal
1197     | font-variant: normal
1198     | font-weight: normal
1199     | line-height: normal
1200    
1201     #data
1202     p {
1203     font: normal normal normal +12px serif;
1204     }
1205     #cssom
1206     | <p>
1207     | font: 12px serif
1208     | font-family: serif
1209     | font-size: 12px
1210     | font-style: normal
1211     | font-variant: normal
1212     | font-weight: normal
1213     | line-height: normal
1214    
1215     #data
1216     p {
1217     font: normal normal normal +12% serif;
1218     }
1219     #cssom
1220     | <p>
1221     | font: 12% serif
1222     | font-family: serif
1223     | font-size: 12%
1224     | font-style: normal
1225     | font-variant: normal
1226     | font-weight: normal
1227     | line-height: normal
1228    
1229     #data
1230     p {
1231     font: normal normal normal ++12 serif;
1232     }
1233     #errors
1234     ;2;31;m;syntax error:'font'
1235     #cssom
1236     | <p>
1237    
1238     #data
1239     p {
1240     font: normal normal normal ++12 serif;
1241     }
1242     #option q
1243     #errors
1244     ;2;31;m;syntax error:'font'
1245     #cssom
1246     | <p>
1247    
1248     #data
1249     p {
1250     font: normal normal normal ++12px serif;
1251     }
1252     #errors
1253     ;2;31;m;syntax error:'font'
1254     #cssom
1255     | <p>
1256    
1257     #data
1258     p {
1259     font: normal normal normal ++12% serif;
1260     }
1261     #errors
1262     ;2;31;m;syntax error:'font'
1263     #cssom
1264     | <p>
1265    
1266     #data
1267     p {
1268     font: normal normal normal 0 serif;
1269     }
1270     #cssom
1271     | <p>
1272     | font: 0px serif
1273     | font-family: serif
1274     | font-size: 0px
1275     | font-style: normal
1276     | font-variant: normal
1277     | font-weight: normal
1278     | line-height: normal
1279    
1280     #data
1281     p {
1282     font: normal normal normal 0 serif;
1283     }
1284     #option q
1285     #cssom
1286     | <p>
1287     | font: 0px serif
1288     | font-family: serif
1289     | font-size: 0px
1290     | font-style: normal
1291     | font-variant: normal
1292     | font-weight: normal
1293     | line-height: normal
1294    
1295     #data
1296     p {
1297     font: normal normal normal +0 serif;
1298     }
1299     #cssom
1300     | <p>
1301     | font: 0px serif
1302     | font-family: serif
1303     | font-size: 0px
1304     | font-style: normal
1305     | font-variant: normal
1306     | font-weight: normal
1307     | line-height: normal
1308    
1309     #data
1310     p {
1311     font: normal normal normal +0% serif;
1312     }
1313     #cssom
1314     | <p>
1315     | font: 0% serif
1316     | font-family: serif
1317     | font-size: 0%
1318     | font-style: normal
1319     | font-variant: normal
1320     | font-weight: normal
1321     | line-height: normal

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24