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