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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.35

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24