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

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.37

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24