/[suikacvs]/markup/html/whatpm/Whatpm/CSS/ChangeLog
Suika

Contents of /markup/html/whatpm/Whatpm/CSS/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.38 - (show annotations) (download)
Tue Jan 1 15:43:47 2008 UTC (16 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.37: +10 -0 lines
++ whatpm/Whatpm/CSS/ChangeLog	1 Jan 2008 15:43:43 -0000
2008-01-02  Wakaba  <wakaba@suika.fam.cx>

	* Cascade.pm (get_computed_value): Resolve initial value referred
	when |inherit| is specified as if it were the specified value.

	* Parser.pm: Some properties were incorrectly marked as
	inherited.
	(background-repeat, background-attachment, font-style,
	font-variant, font-weight, background-image, font-family): Implemented.

1 2008-01-02 Wakaba <wakaba@suika.fam.cx>
2
3 * Cascade.pm (get_computed_value): Resolve initial value referred
4 when |inherit| is specified as if it were the specified value.
5
6 * Parser.pm: Some properties were incorrectly marked as
7 inherited.
8 (background-repeat, background-attachment, font-style,
9 font-variant, font-weight, background-image, font-family): Implemented.
10
11 2008-01-01 Wakaba <wakaba@suika.fam.cx>
12
13 * Parser.pm: Give |list-style-image|'s compute function a name.
14
15 2008-01-01 Wakaba <wakaba@suika.fam.cx>
16
17 * Parser.pm: Give |list-style-image|'s parser a name. Bug fix
18 on base URI scalar reference.
19
20 2008-01-01 Wakaba <wakaba@suika.fam.cx>
21
22 * Parser.pm (page-break-before, page-break-after, page-break-inside,
23 orphans, widows, list-style): Added.
24 (z-index): Support for negative values.
25
26 2008-01-01 Wakaba <wakaba@suika.fam.cx>
27
28 * Parser.pm: Set |manakai_base_uri| attribute of the
29 created |CSSStyleSheet| object.
30 More properties from CSS 2.1 are implemented.
31
32 2008-01-01 Wakaba <wakaba@suika.fam.cx>
33
34 * Cascade.pm: The |use strict| line was missing!!!!!!!!!11
35 (get_computed_value): Support for the |inherit| value.
36
37 * Parser.pm: The |inherit| value is represented by new |INHERIT|
38 value type, rather than |KEYWORD|.
39 (position): The initial value was incorrect.
40
41 2008-01-01 Wakaba <wakaba@suika.fam.cx>
42
43 * Cascade.pm (get_cascaded_value): It now should return |undef|
44 for shorthand properties.
45 (get_specified_value, get_computed_value): New methods.
46
47 * Parser.pm: |initial|, |inherited|, and |compute| properties
48 are added to property definitions.
49
50 2008-01-01 Wakaba <wakaba@suika.fam.cx>
51
52 * Cascade.pm: Specificity and priority are now supported.
53
54 * Parser.pm (get_selector_specificity): New method.
55
56 2007-12-31 Wakaba <wakaba@suika.fam.cx>
57
58 * Cascade.pm: New Perl module.
59
60 * Parser.pm: |@namespace| prohibbitted immediately
61 following |@namespace| rules by mistake.
62
63 2007-12-31 Wakaba <wakaba@suika.fam.cx>
64
65 * Parser.pm: Support for border-style properties, as a model case
66 for shorthand properties.
67
68 2007-12-31 Wakaba <wakaba@suika.fam.cx>
69
70 * Parser.pm: Ignore property which is not supported by the
71 application. Support for properties with a keyword being
72 able to be specified is added.
73
74 2007-12-31 Wakaba <wakaba@suika.fam.cx>
75
76 * Parser.pm: At-keywords were not case-insensitive.
77 Support for property value parsing. Empty declarations
78 were not supported. Raise errors for broken declarations.
79 Parser and serializer definition for |color| is added.
80
81 2007-12-24 Wakaba <wakaba@suika.fam.cx>
82
83 * Parser.pm: Support for |@namespace| rule.
84
85 * SelectorsSerializer.pm: Support for |lookup_namespace_prefix|
86 parameter is added.
87
88 2007-12-23 Wakaba <wakaba@suika.fam.cx>
89
90 * Parser.pm: Support for the |@charset| rule.
91
92 2007-12-23 Wakaba <wakaba@suika.fam.cx>
93
94 * Parser.pm (parse_char_string): A poor support for error
95 line/column reporting is added. Support for pseudo-element
96 and pseudo-class.
97
98 2007-12-23 Wakaba <wakaba@suika.fam.cx>
99
100 * Parser.pm: New module.
101
102 * SelectorsParser.pm (parse_string): Split into |parse_string|
103 and |_parse_selectors_with_tokenizer|. Support for "end by
104 token T" option. Return the last token as well as the
105 parsed selectors pbject.
106
107 2007-11-24 Wakaba <wakaba@suika.fam.cx>
108
109 * SelectorsParser.pm (parse_string): Raise errors if appropriate.
110
111 2007-10-28 Wakaba <wakaba@suika.fam.cx>
112
113 * SelectorsSerializer.pm (serialize_test): Namespace prefix
114 IS namespace URI for sorting stability (attribute and :not()
115 selectors).
116
117 * selectors-object.en.html: Namespace URI cannot be empty.
118
119 2007-10-22 Wakaba <wakaba@suika.fam.cx>
120
121 * SelectorsSerializer.pm ($ident): Non-ascii name start
122 characters after leading |-| was escaped. An IDENT
123 of |-| was not escaped.
124
125 2007-10-17 Wakaba <wakaba@suika.fam.cx>
126
127 * selectors-object.en.html: New documentation.
128
129 2007-10-17 Wakaba <wakaba@suika.fam.cx>
130
131 * SelectorsParser.pod, Makefile: New files.
132
133 2007-10-07 Wakaba <wakaba@suika.fam.cx>
134
135 * SelectorsParser.pm (parse_string): An |IDENT|
136 can be specified as the argument for |-manakai-contains|,
137 as defined in Selectors CR (2001).
138
139 2007-10-07 Wakaba <wakaba@suika.fam.cx>
140
141 * SelectorsParser.pm (BEFORE_CONTAINS_STRING_STATE): New state.
142 (parse_string): Support for |-manakai-current|
143 and |-manakai-contains| pseudo-classes.
144
145 * SelectorsSerializer.pm: Support for |-manakai-current|
146 and |-manakai-contains| pseudo-classes.
147
148 2007-09-30 Wakaba <wakaba@suika.fam.cx>
149
150 * Tokenizer.pm: |\\{nl}| incorrectly appended |{nl}| to
151 the string value of the token.
152
153 2007-09-24 Wakaba <wakaba@suika.fam.cx>
154
155 * SelectorsParser.pm: Pass an empty string as a prefix
156 for lookup namespace prefix callback, for loose compatibility
157 with the |NSResolver| interface.
158
159 2007-09-22 Wakaba <wakaba@suika.fam.cx>
160
161 * SelectorsParser.pm, SelectorsSerializer.pm: New Perl modules.
162
163 * Tokenizer.pm: Token type constants are exportable.
164
165 2007-09-09 Wakaba <wakaba@suika.fam.cx>
166
167 * Tokenizer.pm: Delimiters frequently used in CSS
168 now have different |type|s than |DELIM_TOKEN|.
169
170 2007-09-09 Wakaba <wakaba@suika.fam.cx>
171
172 * Tokenizer.pm: |UNICODE_RANGE| token's |value| no longer
173 includes |U+| prefix.
174
175 2007-09-08 Wakaba <wakaba@suika.fam.cx>
176
177 * Tokenizer.pm: |URI| bugs are fixed.
178
179 2007-09-08 Wakaba <wakaba@suika.fam.cx>
180
181 * Tokenizer.pm: |DIMENSION| and |NUMBER| related
182 bugs are fixed.
183
184 2007-09-08 Wakaba <wakaba@suika.fam.cx>
185
186 * Tokenizer.pm: |NUMBER|-related bugs are fixed.
187
188 2007-09-08 Wakaba <wakaba@suika.fam.cx>
189
190 * Tokenizer.pm: |STRING|-related bugs are fixed.
191
192 2007-09-08 Wakaba <wakaba@suika.fam.cx>
193
194 * Tokenizer.pm: Bug fixes.
195
196 2007-09-08 Wakaba <wakaba@suika.fam.cx>
197
198 * Tokenizer.pm: |UNICODE-RANGE| is implemented.
199
200 2007-09-08 Wakaba <wakaba@suika.fam.cx>
201
202 * Tokenizer.pm: |COMMENT| is implemented.
203 A bug for treatement for |@-->| is fixed.
204
205 2007-09-08 Wakaba <wakaba@suika.fam.cx>
206
207 * Tokenizer.pm: |url()| and |url-prefix()| are implemented.
208 Bug for treatement for |@-| is fixed.
209
210 2007-09-08 Wakaba <wakaba@suika.fam.cx>
211
212 * Tokenizer.pm: First working version.
213
214 2007-08-17 Wakaba <wakaba@suika.fam.cx>
215
216 * Tokenizer.pm: New module.
217
218 * ChangeLog: New file.
219

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24