/[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.1 - (hide annotations) (download)
Sat Jan 26 04:50:05 2008 UTC (17 years, 5 months ago) by wakaba
Branch: MAIN
++ whatpm/t/ChangeLog	26 Jan 2008 04:49:57 -0000
	* css-font.dat: New test file.

	* CSS-Parser-1.dat: |css-font.dat| is added.

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

++ whatpm/Whatpm/CSS/ChangeLog	26 Jan 2008 04:49:36 -0000
	* Parser.pm (font serialize_shorthand): Implemented.
	($generic_font_keywords): Typo fixed.

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     font: 1px serif;
117     }
118     #cssom
119     | <p>
120     | font: 1px serif
121     | font-family: serif
122     | font-size: 1px
123     | font-style: normal
124     | font-variant: normal
125     | font-weight: normal
126     | line-height: normal
127     #csstext
128     p {
129     font-family: serif;
130     font-size: 1px;
131     font-style: normal;
132     font-variant: normal;
133     font-weight: normal;
134     line-height: normal;
135     }
136    
137     #data
138     p {
139     font: 1px inherit;
140     }
141     #cssom
142     | <p>
143     | font: 1px "inherit"
144     | font-family: "inherit"
145     | font-size: 1px
146     | font-style: normal
147     | font-variant: normal
148     | font-weight: normal
149     | line-height: normal
150     #csstext
151     p {
152     font-family: "inherit";
153     font-size: 1px;
154     font-style: normal;
155     font-variant: normal;
156     font-weight: normal;
157     line-height: normal;
158     }
159    
160     #data
161     p {
162     font: normal 1px -manakai-default;
163     }
164     #cssom
165     | <p>
166     | font: 1px -manakai-default
167     | font-family: -manakai-default
168     | font-size: 1px
169     | font-style: normal
170     | font-variant: normal
171     | font-weight: normal
172     | line-height: normal
173     #csstext
174     p {
175     font-family: -manakai-default;
176     font-size: 1px;
177     font-style: normal;
178     font-variant: normal;
179     font-weight: normal;
180     line-height: normal;
181     }
182    
183     #data
184     p {
185     font: bolder 1px Courier New;
186     }
187     #cssom
188     | <p>
189     | font: bolder 1px "Courier New"
190     | font-family: "Courier New"
191     | font-size: 1px
192     | font-style: normal
193     | font-variant: normal
194     | font-weight: bolder
195     | line-height: normal
196     #csstext
197     p {
198     font-family: "Courier New";
199     font-size: 1px;
200     font-style: normal;
201     font-variant: normal;
202     font-weight: bolder;
203     line-height: normal;
204     }
205    
206     #data
207     p {
208     font: inherit;
209     }
210     #cssom
211     | <p>
212     | font: inherit
213     | font-family: inherit
214     | font-size: inherit
215     | font-style: inherit
216     | font-variant: inherit
217     | font-weight: inherit
218     | line-height: inherit
219     #csstext
220     p {
221     font-family: inherit;
222     font-size: inherit;
223     font-style: inherit;
224     font-variant: inherit;
225     font-weight: inherit;
226     line-height: inherit;
227     }
228    
229     #data
230     p {
231     font: inherit;
232     font-family: "inherit";
233     }
234     #cssom
235     | <p>
236     | font-family: "inherit"
237     | font-size: inherit
238     | font-style: inherit
239     | font-variant: inherit
240     | font-weight: inherit
241     | line-height: inherit
242     #csstext
243     p {
244     font-family: "inherit";
245     font-size: inherit;
246     font-style: inherit;
247     font-variant: inherit;
248     font-weight: inherit;
249     line-height: inherit;
250     }
251    
252     #data
253     p {
254     font: inherit;
255     font-size: 16px;
256     }
257     #cssom
258     | <p>
259     | font-family: inherit
260     | font-size: 16px
261     | font-style: inherit
262     | font-variant: inherit
263     | font-weight: inherit
264     | line-height: inherit
265     #csstext
266     p {
267     font-family: inherit;
268     font-size: 16px;
269     font-style: inherit;
270     font-variant: inherit;
271     font-weight: inherit;
272     line-height: inherit;
273     }
274    
275     #data
276     p {
277     font: inherit;
278     font-variant: inherit ! important;
279     }
280     #cssom
281     | <p>
282     | font-family: inherit
283     | font-size: inherit
284     | font-style: inherit
285     | font-variant: inherit !important
286     | font-weight: inherit
287     | line-height: inherit
288     #csstext
289     p {
290     font-family: inherit;
291     font-size: inherit;
292     font-style: inherit;
293     font-variant: inherit ! important;
294     font-weight: inherit;
295     line-height: inherit;
296     }
297    
298     #data
299     p {
300     font: inherit;
301     font-weight: bolder;
302     }
303     #cssom
304     | <p>
305     | font-family: inherit
306     | font-size: inherit
307     | font-style: inherit
308     | font-variant: inherit
309     | font-weight: bolder
310     | line-height: inherit
311     #csstext
312     p {
313     font-family: inherit;
314     font-size: inherit;
315     font-style: inherit;
316     font-variant: inherit;
317     font-weight: bolder;
318     line-height: inherit;
319     }
320    
321    
322    
323    
324    
325    
326    

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24