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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations) (download)
Sun Jan 27 08:09:12 2008 UTC (16 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.1: +248 -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 wakaba 1.1 #data
2     p {
3     color: rgb(1, 2, 3);
4     }
5     #cssom
6     | <p>
7     | color: rgb(1, 2, 3)
8     #csstext
9     p {
10     color: rgb(1, 2, 3);
11     }
12    
13     #data
14     p {
15     color: rgb(1, 2, +3);
16     }
17     #cssom
18     | <p>
19     | color: rgb(1, 2, 3)
20    
21     #data
22     p {
23     color: rgb(1, +2, 3);
24     }
25     #cssom
26     | <p>
27     | color: rgb(1, 2, 3)
28    
29     #data
30     p {
31     color: rgb(+1, 2, 3);
32     }
33     #cssom
34     | <p>
35     | color: rgb(1, 2, 3)
36    
37     #data
38     p {
39     color: rgb(-1, -2, -3);
40     }
41     #cssom
42     | <p>
43     | color: rgb(0, 0, 0)
44    
45     #data
46     p {
47     color: hsl(1, 2%, 3%);
48     }
49     #cssom
50     | <p>
51     | color: rgb(7.803, 7.5021, 7.497)
52    
53     #data
54     p {
55     color: hsl(+1, +2%, +3%);
56     }
57     #cssom
58     | <p>
59     | color: rgb(7.803, 7.5021, 7.497)
60    
61     #data
62     p {
63     color: hsl(-1, -2%, -3%);
64     }
65     #cssom
66     | <p>
67     | color: rgb(0, 0, 0)
68    
69 wakaba 1.2 #data
70     p {
71     text-indent: 12px
72     }
73     #cssom
74     | <p>
75     | text-indent: 12px
76    
77     #data
78     p {
79     text-indent: +12px
80     }
81     #cssom
82     | <p>
83     | text-indent: 12px
84    
85     #data
86     p {
87     text-indent: -12px
88     }
89     #cssom
90     | <p>
91     | text-indent: -12px
92    
93     #data
94     p {
95     letter-spacing: 12px
96     }
97     #cssom
98     | <p>
99     | letter-spacing: 12px
100    
101     #data
102     p {
103     letter-spacing: +12px
104     }
105     #cssom
106     | <p>
107     | letter-spacing: 12px
108    
109     #data
110     p {
111     letter-spacing: -12px
112     }
113     #cssom
114     | <p>
115     | letter-spacing: -12px
116    
117     #data
118     p {
119     letter-spacing: 12
120     }
121     #errors
122     ;2;19;m;syntax error:'letter-spacing'
123     #cssom
124     | <p>
125    
126     #data
127     p {
128     letter-spacing: 12
129     }
130     #option q
131     #cssom
132     | <p>
133     | letter-spacing: 12px
134    
135     #data
136     p {
137     letter-spacing: +12
138     }
139     #errors
140     ;2;20;m;syntax error:'letter-spacing'
141     #cssom
142     | <p>
143    
144     #data
145     p {
146     letter-spacing: +12
147     }
148     #option q
149     #cssom
150     | <p>
151     | letter-spacing: 12px
152    
153     #data
154     p {
155     letter-spacing: -12
156     }
157     #errors
158     ;2;20;m;syntax error:'letter-spacing'
159     #cssom
160     | <p>
161    
162     #data
163     p {
164     letter-spacing: -12
165     }
166     #option q
167     #cssom
168     | <p>
169     | letter-spacing: -12px
170    
171     #data
172     p {
173     letter-spacing: normal
174     }
175     #cssom
176     | <p>
177     | letter-spacing: normal
178    
179     #data
180     p {
181     letter-spacing: +normal
182     }
183     #errors
184     ;2;20;m;syntax error:'letter-spacing'
185     #cssom
186     | <p>
187    
188     #data
189     p {
190     letter-spacing: inherit
191     }
192     #cssom
193     | <p>
194     | letter-spacing: inherit
195    
196     #data
197     p {
198     letter-spacing: +inherit
199     }
200     #errors
201     ;2;20;m;syntax error:'letter-spacing'
202     #cssom
203     | <p>
204    
205     #data
206     p {
207     word-spacing: 12px
208     }
209     #cssom
210     | <p>
211     | word-spacing: 12px
212    
213     #data
214     p {
215     word-spacing: +12px
216     }
217     #cssom
218     | <p>
219     | word-spacing: 12px
220    
221     #data
222     p {
223     word-spacing: -12px
224     }
225     #cssom
226     | <p>
227     | word-spacing: -12px
228    
229     #data
230     p {
231     word-spacing: 12
232     }
233     #errors
234     ;2;17;m;syntax error:'word-spacing'
235     #cssom
236     | <p>
237    
238     #data
239     p {
240     word-spacing: 12
241     }
242     #option q
243     #cssom
244     | <p>
245     | word-spacing: 12px
246    
247     #data
248     p {
249     word-spacing: +12
250     }
251     #errors
252     ;2;18;m;syntax error:'word-spacing'
253     #cssom
254     | <p>
255    
256     #data
257     p {
258     word-spacing: +12
259     }
260     #option q
261     #cssom
262     | <p>
263     | word-spacing: 12px
264    
265     #data
266     p {
267     word-spacing: -12
268     }
269     #errors
270     ;2;18;m;syntax error:'word-spacing'
271     #cssom
272     | <p>
273    
274     #data
275     p {
276     word-spacing: -12
277     }
278     #option q
279     #cssom
280     | <p>
281     | word-spacing: -12px
282    
283     #data
284     p {
285     word-spacing: normal
286     }
287     #cssom
288     | <p>
289     | word-spacing: normal
290    
291     #data
292     p {
293     word-spacing: +normal
294     }
295     #errors
296     ;2;18;m;syntax error:'word-spacing'
297     #cssom
298     | <p>
299    
300     #data
301     p {
302     word-spacing: inherit
303     }
304     #cssom
305     | <p>
306     | word-spacing: inherit
307    
308     #data
309     p {
310     word-spacing: +inherit
311     }
312     #errors
313     ;2;18;m;syntax error:'word-spacing'
314     #cssom
315     | <p>
316    

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24