/[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.5 - (show annotations) (download)
Sun Jan 27 08:09:12 2008 UTC (16 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.4: +17 -0 lines
++ whatpm/t/ChangeLog	27 Jan 2008 08:09:01 -0000
	* CSS-Parser-1.t: Files |css-table.dat| and |css-interactive.dat|
	are added.

	* css-table.dat: New test file.

	* css-interactive.dat: New test file.

	* css-font.dat: New test data for 'font-size' are added.

	* css-text.dat: New test data for 'text-indent', 'letter-spacing',
	and 'word-spacing' are added.

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

++ whatpm/Whatpm/CSS/ChangeLog	27 Jan 2008 08:07:41 -0000
	* Parser.pm ('letter-spacing' parse): Support for '+'.
	('border-spacing' serialize_multiple): Revised taking into
	account 'import' and 'inherit'.
	('border-spacing' parse): Support for '+'.

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

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 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 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;
371 }
372 #cssom
373 | <p>
374 | font-size: 12px
375
376 #data
377 p {
378 font-size: -12px
379 }
380 #errors
381 ;2;15;m;syntax error:'font-size'
382 #cssom
383 | <p>
384
385 #data
386 p {
387 font-size: 12px ! important ;
388 }
389 #cssom
390 | <p>
391 | font-size: 12px !important
392 #csstext
393 p {
394 font-size: 12px ! important;
395 }
396
397 #data
398 p {
399 font-size: 12%;
400 }
401 #cssom
402 | <p>
403 | font-size: 12%
404 #csstext
405 p {
406 font-size: 12%;
407 }
408
409 #data
410 p {
411 font-size: 12cm;
412 }
413 #cssom
414 | <p>
415 | font-size: 12cm
416 #csstext
417 p {
418 font-size: 12cm;
419 }
420
421 #data
422 p {
423 font-size: 12em;
424 }
425 #cssom
426 | <p>
427 | font-size: 12em
428 #csstext
429 p {
430 font-size: 12em;
431 }
432
433 #data
434 p {
435 font-size: inherit;
436 }
437 #cssom
438 | <p>
439 | font-size: inherit
440 #csstext
441 p {
442 font-size: inherit;
443 }
444
445 #data
446 p {
447 font-size: inherit!important;
448 }
449 #cssom
450 | <p>
451 | font-size: inherit !important
452 #csstext
453 p {
454 font-size: inherit ! important;
455 }
456
457 #data
458 p {
459 font-size: +inherit;
460 }
461 #errors
462 ;2;15;m;syntax error:'font-size'
463 #cssom
464 | <p>
465
466 #data
467 p {
468 font-size: -inherit;
469 }
470 #errors
471 ;2;14;m;syntax error:'font-size'
472 #cssom
473 | <p>
474
475 #data
476 p {
477 font-size: -/**/inherit;
478 }
479 #errors
480 ;2;19;m;syntax error:'font-size'
481 #cssom
482 | <p>
483
484 #data
485 p {
486 font-size: xx-small;
487 }
488 #cssom
489 | <p>
490 | font-size: xx-small
491 #csstext
492 p {
493 font-size: xx-small;
494 }
495
496 #data
497 p {
498 font-size: x-small;
499 }
500 #cssom
501 | <p>
502 | font-size: x-small
503 #csstext
504 p {
505 font-size: x-small;
506 }
507
508 #data
509 p {
510 font-size: small;
511 }
512 #cssom
513 | <p>
514 | font-size: small
515 #csstext
516 p {
517 font-size: small;
518 }
519
520 #data
521 p {
522 font-size: medium;
523 }
524 #cssom
525 | <p>
526 | font-size: medium
527 #csstext
528 p {
529 font-size: medium;
530 }
531
532 #data
533 p {
534 font-size: large;
535 }
536 #cssom
537 | <p>
538 | font-size: large
539 #csstext
540 p {
541 font-size: large;
542 }
543
544 #data
545 p {
546 font-size: x-large;
547 }
548 #cssom
549 | <p>
550 | font-size: x-large
551 #csstext
552 p {
553 font-size: x-large;
554 }
555
556 #data
557 p {
558 font-size: xx-large;
559 }
560 #cssom
561 | <p>
562 | font-size: xx-large
563 #csstext
564 p {
565 font-size: xx-large;
566 }
567
568 #data
569 p {
570 font-size: -manakai-xxx-large;
571 }
572 #cssom
573 | <p>
574 | font-size: -manakai-xxx-large
575 #csstext
576 p {
577 font-size: -manakai-xxx-large;
578 }
579
580 #data
581 p {
582 font-size: -webkit-xxx-large;
583 }
584 #cssom
585 | <p>
586 | font-size: -webkit-xxx-large
587 #csstext
588 p {
589 font-size: -webkit-xxx-large;
590 }
591
592 #data
593 p {
594 font-size: larger
595 }
596 #cssom
597 | <p>
598 | font-size: larger
599 #csstext
600 p {
601 font-size: larger;
602 }
603
604 #data
605 p {
606 font-size: smaller
607 }
608 #cssom
609 | <p>
610 | font-size: smaller
611 #csstext
612 p {
613 font-size: smaller;
614 }
615
616 #data
617 p {
618 font: 1px serif;
619 }
620 #cssom
621 | <p>
622 | font: 1px serif
623 | font-family: serif
624 | font-size: 1px
625 | font-style: normal
626 | font-variant: normal
627 | font-weight: normal
628 | line-height: normal
629 #csstext
630 p {
631 font-family: serif;
632 font-size: 1px;
633 font-style: normal;
634 font-variant: normal;
635 font-weight: normal;
636 line-height: normal;
637 }
638
639 #data
640 p {
641 font: 1px serif !important;
642 }
643 #cssom
644 | <p>
645 | font: 1px serif !important
646 | font-family: serif !important
647 | font-size: 1px !important
648 | font-style: normal !important
649 | font-variant: normal !important
650 | font-weight: normal !important
651 | line-height: normal !important
652 #csstext
653 p {
654 font-family: serif ! important;
655 font-size: 1px ! important;
656 font-style: normal ! important;
657 font-variant: normal ! important;
658 font-weight: normal ! important;
659 line-height: normal ! important;
660 }
661
662 #data
663 p {
664 font: 1px inherit;
665 }
666 #cssom
667 | <p>
668 | font: 1px "inherit"
669 | font-family: "inherit"
670 | font-size: 1px
671 | font-style: normal
672 | font-variant: normal
673 | font-weight: normal
674 | line-height: normal
675 #csstext
676 p {
677 font-family: "inherit";
678 font-size: 1px;
679 font-style: normal;
680 font-variant: normal;
681 font-weight: normal;
682 line-height: normal;
683 }
684
685 #data
686 p {
687 font: normal 1px -manakai-default;
688 }
689 #cssom
690 | <p>
691 | font: 1px -manakai-default
692 | font-family: -manakai-default
693 | font-size: 1px
694 | font-style: normal
695 | font-variant: normal
696 | font-weight: normal
697 | line-height: normal
698 #csstext
699 p {
700 font-family: -manakai-default;
701 font-size: 1px;
702 font-style: normal;
703 font-variant: normal;
704 font-weight: normal;
705 line-height: normal;
706 }
707
708 #data
709 p {
710 font: bolder 1px Courier New;
711 }
712 #cssom
713 | <p>
714 | font: bolder 1px "Courier New"
715 | font-family: "Courier New"
716 | font-size: 1px
717 | font-style: normal
718 | font-variant: normal
719 | font-weight: bolder
720 | line-height: normal
721 #csstext
722 p {
723 font-family: "Courier New";
724 font-size: 1px;
725 font-style: normal;
726 font-variant: normal;
727 font-weight: bolder;
728 line-height: normal;
729 }
730
731 #data
732 p {
733 font: inherit;
734 }
735 #cssom
736 | <p>
737 | font: inherit
738 | font-family: inherit
739 | font-size: inherit
740 | font-style: inherit
741 | font-variant: inherit
742 | font-weight: inherit
743 | line-height: inherit
744 #csstext
745 p {
746 font-family: inherit;
747 font-size: inherit;
748 font-style: inherit;
749 font-variant: inherit;
750 font-weight: inherit;
751 line-height: inherit;
752 }
753
754 #data
755 p {
756 font: inherit !important;
757 }
758 #cssom
759 | <p>
760 | font: inherit !important
761 | font-family: inherit !important
762 | font-size: inherit !important
763 | font-style: inherit !important
764 | font-variant: inherit !important
765 | font-weight: inherit !important
766 | line-height: inherit !important
767 #csstext
768 p {
769 font-family: inherit ! important;
770 font-size: inherit ! important;
771 font-style: inherit ! important;
772 font-variant: inherit ! important;
773 font-weight: inherit ! important;
774 line-height: inherit ! important;
775 }
776
777 #data
778 p {
779 font: inherit;
780 font-family: "inherit";
781 }
782 #cssom
783 | <p>
784 | font-family: "inherit"
785 | font-size: inherit
786 | font-style: inherit
787 | font-variant: inherit
788 | font-weight: inherit
789 | line-height: inherit
790 #csstext
791 p {
792 font-family: "inherit";
793 font-size: inherit;
794 font-style: inherit;
795 font-variant: inherit;
796 font-weight: inherit;
797 line-height: inherit;
798 }
799
800 #data
801 p {
802 font: inherit;
803 font-size: 16px;
804 }
805 #cssom
806 | <p>
807 | font-family: inherit
808 | font-size: 16px
809 | font-style: inherit
810 | font-variant: inherit
811 | font-weight: inherit
812 | line-height: inherit
813 #csstext
814 p {
815 font-family: inherit;
816 font-size: 16px;
817 font-style: inherit;
818 font-variant: inherit;
819 font-weight: inherit;
820 line-height: inherit;
821 }
822
823 #data
824 p {
825 font: inherit;
826 font-variant: inherit ! important;
827 }
828 #cssom
829 | <p>
830 | font-family: inherit
831 | font-size: inherit
832 | font-style: inherit
833 | font-variant: inherit !important
834 | font-weight: inherit
835 | line-height: inherit
836 #csstext
837 p {
838 font-family: inherit;
839 font-size: inherit;
840 font-style: inherit;
841 font-variant: inherit ! important;
842 font-weight: inherit;
843 line-height: inherit;
844 }
845
846 #data
847 p {
848 font: inherit;
849 font-weight: bolder;
850 }
851 #cssom
852 | <p>
853 | font-family: inherit
854 | font-size: inherit
855 | font-style: inherit
856 | font-variant: inherit
857 | font-weight: bolder
858 | line-height: inherit
859 #csstext
860 p {
861 font-family: inherit;
862 font-size: inherit;
863 font-style: inherit;
864 font-variant: inherit;
865 font-weight: bolder;
866 line-height: inherit;
867 }
868
869 #data
870 p {
871 font: 800 12 serif;
872 }
873 #errors
874 ;2;13;m;syntax error:'font'
875 #cssom
876 | <p>
877 #csstext
878 p {
879 }
880
881 #data
882 p {
883 font: 800 12 serif;
884 }
885 #option q
886 #cssom
887 | <p>
888 | font: 800 12px serif
889 | font-family: serif
890 | font-size: 12px
891 | font-style: normal
892 | font-variant: normal
893 | font-weight: 800
894 | line-height: normal
895 #csstext
896 p {
897 font-family: serif;
898 font-size: 12px;
899 font-style: normal;
900 font-variant: normal;
901 font-weight: 800;
902 line-height: normal;
903 }
904
905 #data
906 p {
907 font: 800 12px serif;
908 }
909 #cssom
910 | <p>
911 | font: 800 12px serif
912 | font-family: serif
913 | font-size: 12px
914 | font-style: normal
915 | font-variant: normal
916 | font-weight: 800
917 | line-height: normal
918 #csstext
919 p {
920 font-family: serif;
921 font-size: 12px;
922 font-style: normal;
923 font-variant: normal;
924 font-weight: 800;
925 line-height: normal;
926 }
927
928 #data
929 p {
930 font: 800/**/12px/**/serif;
931 }
932 #cssom
933 | <p>
934 | font: 800 12px serif
935 | font-family: serif
936 | font-size: 12px
937 | font-style: normal
938 | font-variant: normal
939 | font-weight: 800
940 | line-height: normal
941 #csstext
942 p {
943 font-family: serif;
944 font-size: 12px;
945 font-style: normal;
946 font-variant: normal;
947 font-weight: 800;
948 line-height: normal;
949 }
950
951 #data
952 p {
953 font: 800 +12 serif;
954 }
955 #errors
956 ;2;14;m;syntax error:'font'
957 #cssom
958 | <p>
959 #csstext
960 p {
961 }
962
963 #data
964 p {
965 font: 800 +12 serif;
966 }
967 #option q
968 #cssom
969 | <p>
970 | font: 800 12px serif
971 | font-family: serif
972 | font-size: 12px
973 | font-style: normal
974 | font-variant: normal
975 | font-weight: 800
976 | line-height: normal
977 #csstext
978 p {
979 font-family: serif;
980 font-size: 12px;
981 font-style: normal;
982 font-variant: normal;
983 font-weight: 800;
984 line-height: normal;
985 }
986
987 #data
988 p {
989 font: 800 + 12 serif;
990 }
991 #errors
992 ;2;14;m;syntax error:'font'
993 #cssom
994 | <p>
995 #csstext
996 p {
997 }
998
999 #data
1000 p {
1001 font: 800 + 12 serif;
1002 }
1003 #option q
1004 #errors
1005 ;2;14;m;syntax error:'font'
1006 #cssom
1007 | <p>
1008 #csstext
1009 p {
1010 }
1011
1012 #data
1013 p {
1014 font: +800 12px serif;
1015 }
1016 #cssom
1017 | <p>
1018 | font: 800 12px serif
1019 | font-family: serif
1020 | font-size: 12px
1021 | font-style: normal
1022 | font-variant: normal
1023 | font-weight: 800
1024 | line-height: normal
1025 #csstext
1026 p {
1027 font-family: serif;
1028 font-size: 12px;
1029 font-style: normal;
1030 font-variant: normal;
1031 font-weight: 800;
1032 line-height: normal;
1033 }
1034
1035 #data
1036 p {
1037 font: -800 12px serif;
1038 }
1039 #errors
1040 ;2;10;m;syntax error:'font'
1041 #cssom
1042 | <p>
1043 #csstext
1044 p {
1045 }
1046
1047 #data
1048 p {
1049 font: -800 12px serif;
1050 }
1051 #option q
1052 #errors
1053 ;2;10;m;syntax error:'font'
1054 #cssom
1055 | <p>
1056 #csstext
1057 p {
1058 }
1059
1060 #data
1061 p {
1062 font: -800 serif;
1063 }
1064 #errors
1065 ;2;10;m;syntax error:'font'
1066 #cssom
1067 | <p>
1068 #csstext
1069 p {
1070 }
1071
1072 #data
1073 p {
1074 font: +12 serif;
1075 }
1076 #option q
1077 #cssom
1078 | <p>
1079 | font: 12px serif
1080 | font-family: serif
1081 | font-size: 12px
1082 | font-style: normal
1083 | font-variant: normal
1084 | font-weight: normal
1085 | line-height: normal
1086 #csstext
1087 p {
1088 font-family: serif;
1089 font-size: 12px;
1090 font-style: normal;
1091 font-variant: normal;
1092 font-weight: normal;
1093 line-height: normal;
1094 }
1095
1096 #data
1097 p {
1098 font: +12px serif;
1099 }
1100 #cssom
1101 | <p>
1102 | font: 12px serif
1103 | font-family: serif
1104 | font-size: 12px
1105 | font-style: normal
1106 | font-variant: normal
1107 | font-weight: normal
1108 | line-height: normal
1109 #csstext
1110 p {
1111 font-family: serif;
1112 font-size: 12px;
1113 font-style: normal;
1114 font-variant: normal;
1115 font-weight: normal;
1116 line-height: normal;
1117 }
1118
1119 #data
1120 p {
1121 font: +12% serif;
1122 }
1123 #cssom
1124 | <p>
1125 | font: 12% serif
1126 | font-family: serif
1127 | font-size: 12%
1128 | font-style: normal
1129 | font-variant: normal
1130 | font-weight: normal
1131 | line-height: normal
1132 #csstext
1133 p {
1134 font-family: serif;
1135 font-size: 12%;
1136 font-style: normal;
1137 font-variant: normal;
1138 font-weight: normal;
1139 line-height: normal;
1140 }
1141
1142 #data
1143 p {
1144 font: normal normal normal 12 serif;
1145 }
1146 #errors
1147 ;2;30;m;syntax error:'font'
1148 #cssom
1149 | <p>
1150
1151 #data
1152 p {
1153 font: normal normal normal 12 serif;
1154 }
1155 #option q
1156 #cssom
1157 | <p>
1158 | font: 12px serif
1159 | font-family: serif
1160 | font-size: 12px
1161 | font-style: normal
1162 | font-variant: normal
1163 | font-weight: normal
1164 | line-height: normal
1165
1166 #data
1167 p {
1168 font: normal normal normal 12px serif;
1169 }
1170 #cssom
1171 | <p>
1172 | font: 12px serif
1173 | font-family: serif
1174 | font-size: 12px
1175 | font-style: normal
1176 | font-variant: normal
1177 | font-weight: normal
1178 | line-height: normal
1179
1180 #data
1181 p {
1182 font: normal normal normal 12% serif;
1183 }
1184 #cssom
1185 | <p>
1186 | font: 12% serif
1187 | font-family: serif
1188 | font-size: 12%
1189 | font-style: normal
1190 | font-variant: normal
1191 | font-weight: normal
1192 | line-height: normal
1193
1194 #data
1195 p {
1196 font: normal normal normal +12 serif;
1197 }
1198 #errors
1199 ;2;31;m;syntax error:'font'
1200 #cssom
1201 | <p>
1202
1203 #data
1204 p {
1205 font: normal normal normal +12 serif;
1206 }
1207 #option q
1208 #cssom
1209 | <p>
1210 | font: 12px serif
1211 | font-family: serif
1212 | font-size: 12px
1213 | font-style: normal
1214 | font-variant: normal
1215 | font-weight: normal
1216 | line-height: normal
1217
1218 #data
1219 p {
1220 font: normal normal normal +12px serif;
1221 }
1222 #cssom
1223 | <p>
1224 | font: 12px serif
1225 | font-family: serif
1226 | font-size: 12px
1227 | font-style: normal
1228 | font-variant: normal
1229 | font-weight: normal
1230 | line-height: normal
1231
1232 #data
1233 p {
1234 font: normal normal normal +12% serif;
1235 }
1236 #cssom
1237 | <p>
1238 | font: 12% serif
1239 | font-family: serif
1240 | font-size: 12%
1241 | font-style: normal
1242 | font-variant: normal
1243 | font-weight: normal
1244 | line-height: normal
1245
1246 #data
1247 p {
1248 font: normal normal normal ++12 serif;
1249 }
1250 #errors
1251 ;2;31;m;syntax error:'font'
1252 #cssom
1253 | <p>
1254
1255 #data
1256 p {
1257 font: normal normal normal ++12 serif;
1258 }
1259 #option q
1260 #errors
1261 ;2;31;m;syntax error:'font'
1262 #cssom
1263 | <p>
1264
1265 #data
1266 p {
1267 font: normal normal normal ++12px serif;
1268 }
1269 #errors
1270 ;2;31;m;syntax error:'font'
1271 #cssom
1272 | <p>
1273
1274 #data
1275 p {
1276 font: normal normal normal ++12% serif;
1277 }
1278 #errors
1279 ;2;31;m;syntax error:'font'
1280 #cssom
1281 | <p>
1282
1283 #data
1284 p {
1285 font: normal normal normal 0 serif;
1286 }
1287 #cssom
1288 | <p>
1289 | font: 0px serif
1290 | font-family: serif
1291 | font-size: 0px
1292 | font-style: normal
1293 | font-variant: normal
1294 | font-weight: normal
1295 | line-height: normal
1296
1297 #data
1298 p {
1299 font: normal normal normal 0 serif;
1300 }
1301 #option q
1302 #cssom
1303 | <p>
1304 | font: 0px serif
1305 | font-family: serif
1306 | font-size: 0px
1307 | font-style: normal
1308 | font-variant: normal
1309 | font-weight: normal
1310 | line-height: normal
1311
1312 #data
1313 p {
1314 font: normal normal normal +0 serif;
1315 }
1316 #cssom
1317 | <p>
1318 | font: 0px serif
1319 | font-family: serif
1320 | font-size: 0px
1321 | font-style: normal
1322 | font-variant: normal
1323 | font-weight: normal
1324 | line-height: normal
1325
1326 #data
1327 p {
1328 font: normal normal normal +0% serif;
1329 }
1330 #cssom
1331 | <p>
1332 | font: 0% serif
1333 | font-family: serif
1334 | font-size: 0%
1335 | font-style: normal
1336 | font-variant: normal
1337 | font-weight: normal
1338 | line-height: normal

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24