/[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.8 - (show annotations) (download)
Sun Feb 10 07:34:10 2008 UTC (16 years, 8 months ago) by wakaba
Branch: MAIN
Changes since 1.7: +2 -2 lines
++ whatpm/t/ChangeLog	10 Feb 2008 07:34:02 -0000
2008-02-10  Wakaba  <wakaba@suika.fam.cx>

	* css-3.dat: New test file.

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

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

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

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

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

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

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

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

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

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

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

1 #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-stretch: normal;
261 }
262 #cssom
263 | <p>
264 | font-stretch: normal
265 #csstext
266 p {
267 font-stretch: normal;
268 }
269
270 #data
271 p {
272 font-stretch: wider;
273 }
274 #cssom
275 | <p>
276 | font-stretch: wider
277 #computed 1 p
278 -| font-stretch: normal
279 +| font-stretch: semi-expanded
280
281 #data
282 p {
283 font-stretch: narrower;
284 }
285 #cssom
286 | <p>
287 | font-stretch: narrower
288 #computed 1 p
289 -| font-stretch: normal
290 +| font-stretch: semi-condensed
291
292 #data
293 p {
294 font-stretch: ultra-condensed;
295 }
296 #cssom
297 | <p>
298 | font-stretch: ultra-condensed
299
300 #data
301 p {
302 font-stretch: extra-condensed;
303 }
304 #cssom
305 | <p>
306 | font-stretch: extra-condensed
307
308 #data
309 p {
310 font-stretch: condensed;
311 }
312 #cssom
313 | <p>
314 | font-stretch: condensed
315
316 #data
317 p {
318 font-stretch: semi-condensed;
319 }
320 #cssom
321 | <p>
322 | font-stretch: semi-condensed
323
324 #data
325 p {
326 font-stretch: semi-expanded;
327 }
328 #cssom
329 | <p>
330 | font-stretch: semi-expanded
331
332 #data
333 p {
334 font-stretch: expanded
335 }
336 #cssom
337 | <p>
338 | font-stretch: expanded
339
340 #data
341 p {
342 font-stretch: extra-expanded;
343 }
344 #cssom
345 | <p>
346 | font-stretch: extra-expanded
347
348 #data
349 p {
350 font-stretch: ultra-expanded;
351 }
352 #cssom
353 | <p>
354 | font-stretch: ultra-expanded
355
356 #data
357 p {
358 font-stretch: inherit;
359 }
360 #cssom
361 | <p>
362 | font-stretch: inherit
363 #computed 1 p
364 #computedtext 1 p
365
366 #data
367 p {
368 font-size: 0;
369 }
370 #cssom
371 | <p>
372 | font-size: 0px
373 #csstext
374 p {
375 font-size: 0px;
376 }
377
378 #data
379 p {
380 font-size: -0;
381 }
382 #cssom
383 | <p>
384 | font-size: 0px
385 #csstext
386 p {
387 font-size: 0px;
388 }
389
390 #data
391 p {
392 font-size: +0;
393 }
394 #cssom
395 | <p>
396 | font-size: 0px
397 #csstext
398 p {
399 font-size: 0px;
400 }
401
402 #data
403 p {
404 font-size: 12;
405 }
406 #errors
407 ;2;14;m;syntax error:'font-size'
408 #cssom
409 | <p>
410 #csstext
411 p {
412 }
413
414 #data
415 p {
416 font-size: 12;
417 }
418 #option q
419 #cssom
420 | <p>
421 | font-size: 12px
422 #csstext
423 p {
424 font-size: 12px;
425 }
426
427 #data
428 p {
429 font-size: +12;
430 }
431 #errors
432 ;2;15;m;syntax error:'font-size'
433 #cssom
434 | <p>
435 #csstext
436 p {
437 }
438
439 #data
440 p {
441 font-size: +12;
442 }
443 #option q
444 #cssom
445 | <p>
446 | font-size: 12px
447 #csstext
448 p {
449 font-size: 12px;
450 }
451
452 #data
453 p {
454 font-size: .12px;
455 }
456 #cssom
457 | <p>
458 | font-size: 0.12px
459 #csstext
460 p {
461 font-size: 0.12px;
462 }
463
464 #data
465 p {
466 font-size: 12px;
467 }
468 #cssom
469 | <p>
470 | font-size: 12px
471 #csstext
472 p {
473 font-size: 12px;
474 }
475
476 #data
477 p {
478 font-size: +12px;
479 }
480 #cssom
481 | <p>
482 | font-size: 12px
483
484 #data
485 p {
486 font-size: -12px
487 }
488 #errors
489 ;2;15;m;syntax error:'font-size'
490 #cssom
491 | <p>
492
493 #data
494 p {
495 font-size: 12px ! important ;
496 }
497 #cssom
498 | <p>
499 | font-size: 12px !important
500 #csstext
501 p {
502 font-size: 12px ! important;
503 }
504
505 #data
506 p {
507 font-size: 12%;
508 }
509 #cssom
510 | <p>
511 | font-size: 12%
512 #csstext
513 p {
514 font-size: 12%;
515 }
516
517 #data
518 p {
519 font-size: 12cm;
520 }
521 #cssom
522 | <p>
523 | font-size: 12cm
524 #csstext
525 p {
526 font-size: 12cm;
527 }
528
529 #data
530 p {
531 font-size: 12em;
532 }
533 #cssom
534 | <p>
535 | font-size: 12em
536 #csstext
537 p {
538 font-size: 12em;
539 }
540
541 #data
542 p {
543 font-size: inherit;
544 }
545 #cssom
546 | <p>
547 | font-size: inherit
548 #csstext
549 p {
550 font-size: inherit;
551 }
552
553 #data
554 p {
555 font-size: inherit!important;
556 }
557 #cssom
558 | <p>
559 | font-size: inherit !important
560 #csstext
561 p {
562 font-size: inherit ! important;
563 }
564
565 #data
566 p {
567 font-size: +inherit;
568 }
569 #errors
570 ;2;15;m;syntax error:'font-size'
571 #cssom
572 | <p>
573
574 #data
575 p {
576 font-size: -inherit;
577 }
578 #errors
579 ;2;14;m;syntax error:'font-size'
580 #cssom
581 | <p>
582
583 #data
584 p {
585 font-size: -/**/inherit;
586 }
587 #errors
588 ;2;19;m;syntax error:'font-size'
589 #cssom
590 | <p>
591
592 #data
593 p {
594 font-size: xx-small;
595 }
596 #cssom
597 | <p>
598 | font-size: xx-small
599 #csstext
600 p {
601 font-size: xx-small;
602 }
603
604 #data
605 p {
606 font-size: x-small;
607 }
608 #cssom
609 | <p>
610 | font-size: x-small
611 #csstext
612 p {
613 font-size: x-small;
614 }
615
616 #data
617 p {
618 font-size: small;
619 }
620 #cssom
621 | <p>
622 | font-size: small
623 #csstext
624 p {
625 font-size: small;
626 }
627
628 #data
629 p {
630 font-size: medium;
631 }
632 #cssom
633 | <p>
634 | font-size: medium
635 #csstext
636 p {
637 font-size: medium;
638 }
639
640 #data
641 p {
642 font-size: large;
643 }
644 #cssom
645 | <p>
646 | font-size: large
647 #csstext
648 p {
649 font-size: large;
650 }
651
652 #data
653 p {
654 font-size: x-large;
655 }
656 #cssom
657 | <p>
658 | font-size: x-large
659 #csstext
660 p {
661 font-size: x-large;
662 }
663
664 #data
665 p {
666 font-size: xx-large;
667 }
668 #cssom
669 | <p>
670 | font-size: xx-large
671 #csstext
672 p {
673 font-size: xx-large;
674 }
675
676 #data
677 p {
678 font-size: -manakai-xxx-large;
679 }
680 #cssom
681 | <p>
682 | font-size: -manakai-xxx-large
683 #csstext
684 p {
685 font-size: -manakai-xxx-large;
686 }
687
688 #data
689 p {
690 font-size: -webkit-xxx-large;
691 }
692 #cssom
693 | <p>
694 | font-size: -webkit-xxx-large
695 #csstext
696 p {
697 font-size: -webkit-xxx-large;
698 }
699
700 #data
701 p {
702 font-size: larger
703 }
704 #cssom
705 | <p>
706 | font-size: larger
707 #csstext
708 p {
709 font-size: larger;
710 }
711
712 #data
713 p {
714 font-size: smaller
715 }
716 #cssom
717 | <p>
718 | font-size: smaller
719 #csstext
720 p {
721 font-size: smaller;
722 }
723
724 #data
725 p {
726 font-size-adjust: 1;
727 }
728 #cssom
729 | <p>
730 | font-size-adjust: 1
731 #csstext
732 p {
733 font-size-adjust: 1;
734 }
735 #computed 1 p
736 -| font-size-adjust: none
737 +| font-size-adjust: 1
738 #computedtext 1 p
739 - font-size-adjust: none;
740 + font-size-adjust: 1;
741
742 #data
743 p {
744 font-size-adjust : +2
745 }
746 #cssom
747 | <p>
748 | font-size-adjust: 2
749
750 #data
751 p {
752 font-size-adjust: 0010.4400;
753 }
754 #cssom
755 | <p>
756 | font-size-adjust: 10.44
757
758 #data
759 p {
760 font-size-adjust: -44.4
761 }
762 #cssom
763 | <p>
764 | font-size-adjust: -44.4
765
766 #data
767 p {
768 font-size-adjust: none;
769 }
770 #cssom
771 | <p>
772 | font-size-adjust: none
773 #csstext
774 p {
775 font-size-adjust: none;
776 }
777 #computed 1 p
778 #computedtext 1 p
779
780 #data
781 p {
782 font-size-adjust: inherit;
783 }
784 #cssom
785 | <p>
786 | font-size-adjust: inherit
787 #csstext
788 p {
789 font-size-adjust: inherit;
790 }
791 #computed 1 p
792 #computedtext 1 p
793
794 #data
795 p {
796 font-size-ajust: none;
797 }
798 #errors
799 ;2;3;u;property not supported;font-size-ajust
800 #cssom
801 | <p>
802
803 #data
804 p {
805 font-size-adjast: none;
806 }
807 #errors
808 ;2;3;u;property not supported;font-size-adjast
809 #cssom
810 | <p>
811
812 #data
813 p {
814 font: 1px serif;
815 }
816 #cssom
817 | <p>
818 | font: 1px serif
819 | font-family: serif
820 | font-size: 1px
821 | font-size-adjust: none
822 | font-stretch: normal
823 | font-style: normal
824 | font-variant: normal
825 | font-weight: normal
826 | line-height: normal
827 #csstext
828 p {
829 font-family: serif;
830 font-size: 1px;
831 font-size-adjust: none;
832 font-stretch: normal;
833 font-style: normal;
834 font-variant: normal;
835 font-weight: normal;
836 line-height: normal;
837 }
838
839 #data
840 p {
841 font: 1px serif !important;
842 }
843 #cssom
844 | <p>
845 | font: 1px serif !important
846 | font-family: serif !important
847 | font-size: 1px !important
848 | font-size-adjust: none !important
849 | font-stretch: normal !important
850 | font-style: normal !important
851 | font-variant: normal !important
852 | font-weight: normal !important
853 | line-height: normal !important
854 #csstext
855 p {
856 font-family: serif ! important;
857 font-size: 1px ! important;
858 font-size-adjust: none ! important;
859 font-stretch: normal ! important;
860 font-style: normal ! important;
861 font-variant: normal ! important;
862 font-weight: normal ! important;
863 line-height: normal ! important;
864 }
865
866 #data
867 p {
868 font: 1px inherit;
869 }
870 #cssom
871 | <p>
872 | font: 1px "inherit"
873 | font-family: "inherit"
874 | font-size: 1px
875 | font-size-adjust: none
876 | font-stretch: normal
877 | font-style: normal
878 | font-variant: normal
879 | font-weight: normal
880 | line-height: normal
881 #csstext
882 p {
883 font-family: "inherit";
884 font-size: 1px;
885 font-size-adjust: none;
886 font-stretch: normal;
887 font-style: normal;
888 font-variant: normal;
889 font-weight: normal;
890 line-height: normal;
891 }
892
893 #data
894 p {
895 font: normal 1px -manakai-default;
896 }
897 #cssom
898 | <p>
899 | font: 1px -manakai-default
900 | font-family: -manakai-default
901 | font-size: 1px
902 | font-size-adjust: none
903 | font-stretch: normal
904 | font-style: normal
905 | font-variant: normal
906 | font-weight: normal
907 | line-height: normal
908 #csstext
909 p {
910 font-family: -manakai-default;
911 font-size: 1px;
912 font-size-adjust: none;
913 font-stretch: normal;
914 font-style: normal;
915 font-variant: normal;
916 font-weight: normal;
917 line-height: normal;
918 }
919
920 #data
921 p {
922 font: bolder 1px Courier New;
923 }
924 #cssom
925 | <p>
926 | font: bolder 1px "Courier New"
927 | font-family: "Courier New"
928 | font-size: 1px
929 | font-size-adjust: none
930 | font-stretch: normal
931 | font-style: normal
932 | font-variant: normal
933 | font-weight: bolder
934 | line-height: normal
935 #csstext
936 p {
937 font-family: "Courier New";
938 font-size: 1px;
939 font-size-adjust: none;
940 font-stretch: normal;
941 font-style: normal;
942 font-variant: normal;
943 font-weight: bolder;
944 line-height: normal;
945 }
946
947 #data
948 p {
949 font: inherit;
950 }
951 #cssom
952 | <p>
953 | font: inherit
954 | font-family: inherit
955 | font-size: inherit
956 | font-size-adjust: inherit
957 | font-stretch: inherit
958 | font-style: inherit
959 | font-variant: inherit
960 | font-weight: inherit
961 | line-height: inherit
962 #csstext
963 p {
964 font-family: inherit;
965 font-size: inherit;
966 font-size-adjust: inherit;
967 font-stretch: inherit;
968 font-style: inherit;
969 font-variant: inherit;
970 font-weight: inherit;
971 line-height: inherit;
972 }
973
974 #data
975 p {
976 font: inherit !important;
977 }
978 #cssom
979 | <p>
980 | font: inherit !important
981 | font-family: inherit !important
982 | font-size: inherit !important
983 | font-size-adjust: inherit !important
984 | font-stretch: inherit !important
985 | font-style: inherit !important
986 | font-variant: inherit !important
987 | font-weight: inherit !important
988 | line-height: inherit !important
989 #csstext
990 p {
991 font-family: inherit ! important;
992 font-size: inherit ! important;
993 font-size-adjust: inherit ! important;
994 font-stretch: inherit ! important;
995 font-style: inherit ! important;
996 font-variant: inherit ! important;
997 font-weight: inherit ! important;
998 line-height: inherit ! important;
999 }
1000
1001 #data
1002 p {
1003 font: inherit;
1004 font-family: "inherit";
1005 }
1006 #cssom
1007 | <p>
1008 | font-family: "inherit"
1009 | font-size: inherit
1010 | font-size-adjust: inherit
1011 | font-stretch: inherit
1012 | font-style: inherit
1013 | font-variant: inherit
1014 | font-weight: inherit
1015 | line-height: inherit
1016 #csstext
1017 p {
1018 font-family: "inherit";
1019 font-size: inherit;
1020 font-size-adjust: inherit;
1021 font-stretch: inherit;
1022 font-style: inherit;
1023 font-variant: inherit;
1024 font-weight: inherit;
1025 line-height: inherit;
1026 }
1027
1028 #data
1029 p {
1030 font: inherit;
1031 font-size: 16px;
1032 }
1033 #cssom
1034 | <p>
1035 | font-family: inherit
1036 | font-size: 16px
1037 | font-size-adjust: inherit
1038 | font-stretch: inherit
1039 | font-style: inherit
1040 | font-variant: inherit
1041 | font-weight: inherit
1042 | line-height: inherit
1043 #csstext
1044 p {
1045 font-family: inherit;
1046 font-size: 16px;
1047 font-size-adjust: inherit;
1048 font-stretch: inherit;
1049 font-style: inherit;
1050 font-variant: inherit;
1051 font-weight: inherit;
1052 line-height: inherit;
1053 }
1054
1055 #data
1056 p {
1057 font: inherit;
1058 font-variant: inherit ! important;
1059 }
1060 #cssom
1061 | <p>
1062 | font-family: inherit
1063 | font-size: inherit
1064 | font-size-adjust: inherit
1065 | font-stretch: inherit
1066 | font-style: inherit
1067 | font-variant: inherit !important
1068 | font-weight: inherit
1069 | line-height: inherit
1070 #csstext
1071 p {
1072 font-family: inherit;
1073 font-size: inherit;
1074 font-size-adjust: inherit;
1075 font-stretch: inherit;
1076 font-style: inherit;
1077 font-variant: inherit ! important;
1078 font-weight: inherit;
1079 line-height: inherit;
1080 }
1081
1082 #data
1083 p {
1084 font: inherit;
1085 font-weight: bolder;
1086 }
1087 #cssom
1088 | <p>
1089 | font-family: inherit
1090 | font-size: inherit
1091 | font-size-adjust: inherit
1092 | font-stretch: inherit
1093 | font-style: inherit
1094 | font-variant: inherit
1095 | font-weight: bolder
1096 | line-height: inherit
1097 #csstext
1098 p {
1099 font-family: inherit;
1100 font-size: inherit;
1101 font-size-adjust: inherit;
1102 font-stretch: inherit;
1103 font-style: inherit;
1104 font-variant: inherit;
1105 font-weight: bolder;
1106 line-height: inherit;
1107 }
1108
1109 #data
1110 p {
1111 font: 800 12 serif;
1112 }
1113 #errors
1114 ;2;13;m;syntax error:'font'
1115 #cssom
1116 | <p>
1117 #csstext
1118 p {
1119 }
1120
1121 #data
1122 p {
1123 font: 800 12 serif;
1124 }
1125 #option q
1126 #cssom
1127 | <p>
1128 | font: 800 12px serif
1129 | font-family: serif
1130 | font-size: 12px
1131 | font-size-adjust: none
1132 | font-stretch: normal
1133 | font-style: normal
1134 | font-variant: normal
1135 | font-weight: 800
1136 | line-height: normal
1137 #csstext
1138 p {
1139 font-family: serif;
1140 font-size: 12px;
1141 font-size-adjust: none;
1142 font-stretch: normal;
1143 font-style: normal;
1144 font-variant: normal;
1145 font-weight: 800;
1146 line-height: normal;
1147 }
1148
1149 #data
1150 p {
1151 font: 800 12px serif;
1152 }
1153 #cssom
1154 | <p>
1155 | font: 800 12px serif
1156 | font-family: serif
1157 | font-size: 12px
1158 | font-size-adjust: none
1159 | font-stretch: normal
1160 | font-style: normal
1161 | font-variant: normal
1162 | font-weight: 800
1163 | line-height: normal
1164 #csstext
1165 p {
1166 font-family: serif;
1167 font-size: 12px;
1168 font-size-adjust: none;
1169 font-stretch: normal;
1170 font-style: normal;
1171 font-variant: normal;
1172 font-weight: 800;
1173 line-height: normal;
1174 }
1175
1176 #data
1177 p {
1178 font: 800/**/12px/**/serif;
1179 }
1180 #cssom
1181 | <p>
1182 | font: 800 12px serif
1183 | font-family: serif
1184 | font-size: 12px
1185 | font-size-adjust: none
1186 | font-stretch: normal
1187 | font-style: normal
1188 | font-variant: normal
1189 | font-weight: 800
1190 | line-height: normal
1191 #csstext
1192 p {
1193 font-family: serif;
1194 font-size: 12px;
1195 font-size-adjust: none;
1196 font-stretch: normal;
1197 font-style: normal;
1198 font-variant: normal;
1199 font-weight: 800;
1200 line-height: normal;
1201 }
1202
1203 #data
1204 p {
1205 font: 800 +12 serif;
1206 }
1207 #errors
1208 ;2;14;m;syntax error:'font'
1209 #cssom
1210 | <p>
1211 #csstext
1212 p {
1213 }
1214
1215 #data
1216 p {
1217 font: 800 +12 serif;
1218 }
1219 #option q
1220 #cssom
1221 | <p>
1222 | font: 800 12px serif
1223 | font-family: serif
1224 | font-size: 12px
1225 | font-size-adjust: none
1226 | font-stretch: normal
1227 | font-style: normal
1228 | font-variant: normal
1229 | font-weight: 800
1230 | line-height: normal
1231 #csstext
1232 p {
1233 font-family: serif;
1234 font-size: 12px;
1235 font-size-adjust: none;
1236 font-stretch: normal;
1237 font-style: normal;
1238 font-variant: normal;
1239 font-weight: 800;
1240 line-height: normal;
1241 }
1242
1243 #data
1244 p {
1245 font: 800 + 12 serif;
1246 }
1247 #errors
1248 ;2;14;m;syntax error:'font'
1249 #cssom
1250 | <p>
1251 #csstext
1252 p {
1253 }
1254
1255 #data
1256 p {
1257 font: 800 + 12 serif;
1258 }
1259 #option q
1260 #errors
1261 ;2;14;m;syntax error:'font'
1262 #cssom
1263 | <p>
1264 #csstext
1265 p {
1266 }
1267
1268 #data
1269 p {
1270 font: +800 12px serif;
1271 }
1272 #cssom
1273 | <p>
1274 | font: 800 12px serif
1275 | font-family: serif
1276 | font-size: 12px
1277 | font-size-adjust: none
1278 | font-stretch: normal
1279 | font-style: normal
1280 | font-variant: normal
1281 | font-weight: 800
1282 | line-height: normal
1283 #csstext
1284 p {
1285 font-family: serif;
1286 font-size: 12px;
1287 font-size-adjust: none;
1288 font-stretch: normal;
1289 font-style: normal;
1290 font-variant: normal;
1291 font-weight: 800;
1292 line-height: normal;
1293 }
1294
1295 #data
1296 p {
1297 font: -800 12px serif;
1298 }
1299 #errors
1300 ;2;10;m;syntax error:'font'
1301 #cssom
1302 | <p>
1303 #csstext
1304 p {
1305 }
1306
1307 #data
1308 p {
1309 font: -800 12px serif;
1310 }
1311 #option q
1312 #errors
1313 ;2;10;m;syntax error:'font'
1314 #cssom
1315 | <p>
1316 #csstext
1317 p {
1318 }
1319
1320 #data
1321 p {
1322 font: -800 serif;
1323 }
1324 #errors
1325 ;2;10;m;syntax error:'font'
1326 #cssom
1327 | <p>
1328 #csstext
1329 p {
1330 }
1331
1332 #data
1333 p {
1334 font: +12 serif;
1335 }
1336 #option q
1337 #cssom
1338 | <p>
1339 | font: 12px serif
1340 | font-family: serif
1341 | font-size: 12px
1342 | font-size-adjust: none
1343 | font-stretch: normal
1344 | font-style: normal
1345 | font-variant: normal
1346 | font-weight: normal
1347 | line-height: normal
1348 #csstext
1349 p {
1350 font-family: serif;
1351 font-size: 12px;
1352 font-size-adjust: none;
1353 font-stretch: normal;
1354 font-style: normal;
1355 font-variant: normal;
1356 font-weight: normal;
1357 line-height: normal;
1358 }
1359
1360 #data
1361 p {
1362 font: +12px serif;
1363 }
1364 #cssom
1365 | <p>
1366 | font: 12px serif
1367 | font-family: serif
1368 | font-size: 12px
1369 | font-size-adjust: none
1370 | font-stretch: normal
1371 | font-style: normal
1372 | font-variant: normal
1373 | font-weight: normal
1374 | line-height: normal
1375 #csstext
1376 p {
1377 font-family: serif;
1378 font-size: 12px;
1379 font-size-adjust: none;
1380 font-stretch: normal;
1381 font-style: normal;
1382 font-variant: normal;
1383 font-weight: normal;
1384 line-height: normal;
1385 }
1386
1387 #data
1388 p {
1389 font: +12% serif;
1390 }
1391 #cssom
1392 | <p>
1393 | font: 12% serif
1394 | font-family: serif
1395 | font-size: 12%
1396 | font-size-adjust: none
1397 | font-stretch: normal
1398 | font-style: normal
1399 | font-variant: normal
1400 | font-weight: normal
1401 | line-height: normal
1402 #csstext
1403 p {
1404 font-family: serif;
1405 font-size: 12%;
1406 font-size-adjust: none;
1407 font-stretch: normal;
1408 font-style: normal;
1409 font-variant: normal;
1410 font-weight: normal;
1411 line-height: normal;
1412 }
1413
1414 #data
1415 p {
1416 font: normal normal normal 12 serif;
1417 }
1418 #errors
1419 ;2;30;m;syntax error:'font'
1420 #cssom
1421 | <p>
1422
1423 #data
1424 p {
1425 font: normal normal normal 12 serif;
1426 }
1427 #option q
1428 #cssom
1429 | <p>
1430 | font: 12px serif
1431 | font-family: serif
1432 | font-size: 12px
1433 | font-size-adjust: none
1434 | font-stretch: normal
1435 | font-style: normal
1436 | font-variant: normal
1437 | font-weight: normal
1438 | line-height: normal
1439
1440 #data
1441 p {
1442 font: normal normal normal 12px serif;
1443 }
1444 #cssom
1445 | <p>
1446 | font: 12px serif
1447 | font-family: serif
1448 | font-size: 12px
1449 | font-size-adjust: none
1450 | font-stretch: normal
1451 | font-style: normal
1452 | font-variant: normal
1453 | font-weight: normal
1454 | line-height: normal
1455
1456 #data
1457 p {
1458 font: normal normal normal 12% serif;
1459 }
1460 #cssom
1461 | <p>
1462 | font: 12% serif
1463 | font-family: serif
1464 | font-size: 12%
1465 | font-size-adjust: none
1466 | font-stretch: normal
1467 | font-style: normal
1468 | font-variant: normal
1469 | font-weight: normal
1470 | line-height: normal
1471
1472 #data
1473 p {
1474 font: normal normal normal +12 serif;
1475 }
1476 #errors
1477 ;2;31;m;syntax error:'font'
1478 #cssom
1479 | <p>
1480
1481 #data
1482 p {
1483 font: normal normal normal +12 serif;
1484 }
1485 #option q
1486 #cssom
1487 | <p>
1488 | font: 12px serif
1489 | font-family: serif
1490 | font-size: 12px
1491 | font-size-adjust: none
1492 | font-stretch: normal
1493 | font-style: normal
1494 | font-variant: normal
1495 | font-weight: normal
1496 | line-height: normal
1497
1498 #data
1499 p {
1500 font: normal normal normal +12px serif;
1501 }
1502 #cssom
1503 | <p>
1504 | font: 12px serif
1505 | font-family: serif
1506 | font-size: 12px
1507 | font-size-adjust: none
1508 | font-stretch: normal
1509 | font-style: normal
1510 | font-variant: normal
1511 | font-weight: normal
1512 | line-height: normal
1513
1514 #data
1515 p {
1516 font: normal normal normal +12% serif;
1517 }
1518 #cssom
1519 | <p>
1520 | font: 12% serif
1521 | font-family: serif
1522 | font-size: 12%
1523 | font-size-adjust: none
1524 | font-stretch: normal
1525 | font-style: normal
1526 | font-variant: normal
1527 | font-weight: normal
1528 | line-height: normal
1529
1530 #data
1531 p {
1532 font: normal normal normal ++12 serif;
1533 }
1534 #errors
1535 ;2;31;m;syntax error:'font'
1536 #cssom
1537 | <p>
1538
1539 #data
1540 p {
1541 font: normal normal normal ++12 serif;
1542 }
1543 #option q
1544 #errors
1545 ;2;31;m;syntax error:'font'
1546 #cssom
1547 | <p>
1548
1549 #data
1550 p {
1551 font: normal normal normal ++12px serif;
1552 }
1553 #errors
1554 ;2;31;m;syntax error:'font'
1555 #cssom
1556 | <p>
1557
1558 #data
1559 p {
1560 font: normal normal normal ++12% serif;
1561 }
1562 #errors
1563 ;2;31;m;syntax error:'font'
1564 #cssom
1565 | <p>
1566
1567 #data
1568 p {
1569 font: normal normal normal 0 serif;
1570 }
1571 #cssom
1572 | <p>
1573 | font: 0px serif
1574 | font-family: serif
1575 | font-size: 0px
1576 | font-size-adjust: none
1577 | font-stretch: normal
1578 | font-style: normal
1579 | font-variant: normal
1580 | font-weight: normal
1581 | line-height: normal
1582
1583 #data
1584 p {
1585 font: normal normal normal 0 serif;
1586 }
1587 #option q
1588 #cssom
1589 | <p>
1590 | font: 0px serif
1591 | font-family: serif
1592 | font-size: 0px
1593 | font-size-adjust: none
1594 | font-stretch: normal
1595 | font-style: normal
1596 | font-variant: normal
1597 | font-weight: normal
1598 | line-height: normal
1599
1600 #data
1601 p {
1602 font: normal normal normal +0 serif;
1603 }
1604 #cssom
1605 | <p>
1606 | font: 0px serif
1607 | font-family: serif
1608 | font-size: 0px
1609 | font-size-adjust: none
1610 | font-stretch: normal
1611 | font-style: normal
1612 | font-variant: normal
1613 | font-weight: normal
1614 | line-height: normal
1615
1616 #data
1617 p {
1618 font: normal normal normal +0% serif;
1619 }
1620 #cssom
1621 | <p>
1622 | font: 0% serif
1623 | font-family: serif
1624 | font-size: 0%
1625 | font-size-adjust: none
1626 | font-stretch: normal
1627 | font-style: normal
1628 | font-variant: normal
1629 | font-weight: normal
1630 | line-height: normal

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24