/[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.28 by wakaba, Mon Dec 31 07:26:35 2007 UTC revision 1.52 by wakaba, Sat Jan 12 07:20:22 2008 UTC
# Line 1  Line 1 
1    2008-01-12  Wakaba  <wakaba@suika.fam.cx>
2    
3            * Parser.pm: 'border', 'border-top', 'border-right', 'border-bottom',
4            'border-left', and 'outline' are implemented.  White space characters
5            were not allowed between property name and COLON.
6    
7    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
8    
9            * Cascade.pm: The object now has new device-dependent
10            parameter, |has_invert|.
11    
12            * Parser.pm: The object now has new device-dependent
13            parameter, |clip_color| function.
14            (parse_char_string): Inifinite-loop fixed for ignoring
15            states.  No longer check for '(' and '[' matchings for
16            compatibility with browsers.
17            ($default_serializer): Support for 'RGBA' data type.
18            (color): Reimplemented.
19            (backbround-color, border-top-color, border-right-color,
20            border-bottom-color, border-left-color, outline-color): Implemented.
21    
22    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
23    
24            * Parser.pm (background-position, background-position-x,
25            background-position-y): Implemented.
26    
27    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
28    
29            * Parser.pm (border-spacing serialize_multiple): Implemented.
30    
31    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
32    
33            * Parser.pm: Disallow '-' without following NUMBER or DIMENSION.
34            (border-width serialize): Was incorrect.
35    
36    2008-01-05  Wakaba  <wakaba@suika.fam.cx>
37    
38            * Parser.pm (-manakai-border-spacing-x, -manakai-border-spacing-y,
39            border-spacing): Implemented.
40    
41    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
42    
43            * Parser.pm (letter-spacing, word-specing, text-indent,
44            outline-width): Implemented.
45            (outline-style): Don't allow 'hidden'.
46    
47    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
48    
49            * Parser.pm ($default_serializer): Support for
50            the |PERCENTAGE| data type.
51            (padding-top, border-top-width): The parser now
52            refers the parser of the 'margin-top'.
53            (width, height, min-width, min-height, max-width, max-height,
54            vertical-align, line-height): Implemented.
55    
56    2008-01-03  Wakaba  <wakaba@suika.fam.cx>
57    
58            * Cascade.pm (get_specified_value_no_inherit): New function.
59            (get_computed_value): New way to get computed value,
60            the |{compute_multiple}| code, is now supported.
61    
62            * Parser.pm (top, bottom, left, right): Implemented.
63    
64    2008-01-03  Wakaba  <wakaba@suika.fam.cx>
65    
66            * Parser.pm: Some condition operators were incorrect.  
67            The 'border-width' property family is implemented.
68    
69    2008-01-03  Wakaba  <wakaba@suika.fam.cx>
70    
71            * Parser.pm: Support for the 'margin' and 'padding'
72            property families.
73    
74    2008-01-03  Wakaba  <wakaba@suika.fam.cx>
75    
76            * Parser.pm: 'font-size' support.
77    
78            * Cascade.pm (new): Set default value for 'font-size'
79            relative- and absolute- value computations.
80    
81    2008-01-02  Wakaba  <wakaba@suika.fam.cx>
82    
83            * Cascade.pm (get_cascaded_value): "*"-only declaration blocks
84            were ignored.
85    
86            * Parser.pm (cursor): Implemented.
87    
88    2008-01-02  Wakaba  <wakaba@suika.fam.cx>
89    
90            * Parser.pm (text-align, text-transform, white-space,
91            caption-side, table-layout, border-collapse, empty-cells,
92            outline-style, text-decoration): Implemented.
93    
94    2008-01-02  Wakaba  <wakaba@suika.fam.cx>
95    
96            * Cascade.pm (get_computed_value): Even when |inherit| is specified
97            the value is resolved into the computed value by the |{compute}|
98            code to support edge cases not mentioned in the CSS 2.1 spec (see
99            <http://suika.fam.cx/gate/2005/sw/inherit>).
100    
101    2008-01-02  Wakaba  <wakaba@suika.fam.cx>
102    
103            * Cascade.pm (get_computed_value): Resolve initial value referred
104            when |inherit| is specified as if it were the specified value.
105    
106            * Parser.pm: Some properties were incorrectly marked as
107            inherited.
108            (background-repeat, background-attachment, font-style,
109            font-variant, font-weight, background-image, font-family): Implemented.
110    
111    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
112    
113            * Parser.pm: Give |list-style-image|'s compute function a name.
114    
115    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
116    
117            * Parser.pm: Give |list-style-image|'s parser a name.  Bug fix
118            on base URI scalar reference.
119    
120    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
121    
122            * Parser.pm (page-break-before, page-break-after, page-break-inside,
123            orphans, widows, list-style): Added.
124            (z-index): Support for negative values.
125    
126    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
127    
128            * Parser.pm: Set |manakai_base_uri| attribute of the
129            created |CSSStyleSheet| object.
130            More properties from CSS 2.1 are implemented.
131    
132    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
133    
134            * Cascade.pm: The |use strict| line was missing!!!!!!!!!11
135            (get_computed_value): Support for the |inherit| value.
136    
137            * Parser.pm: The |inherit| value is represented by new |INHERIT|
138            value type, rather than |KEYWORD|.
139            (position): The initial value was incorrect.
140    
141    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
142    
143            * Cascade.pm (get_cascaded_value): It now should return |undef|
144            for shorthand properties.
145            (get_specified_value, get_computed_value): New methods.
146    
147            * Parser.pm: |initial|, |inherited|, and |compute| properties
148            are added to property definitions.
149    
150    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
151    
152            * Cascade.pm: Specificity and priority are now supported.
153    
154            * Parser.pm (get_selector_specificity): New method.
155    
156    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
157    
158            * Cascade.pm: New Perl module.
159    
160            * Parser.pm: |@namespace| prohibbitted immediately
161            following |@namespace| rules by mistake.
162    
163    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
164    
165            * Parser.pm: Support for border-style properties, as a model case
166            for shorthand properties.
167    
168  2007-12-31  Wakaba  <wakaba@suika.fam.cx>  2007-12-31  Wakaba  <wakaba@suika.fam.cx>
169    
170          * Parser.pm: Ignore property which is not supported by the          * Parser.pm: Ignore property which is not supported by the

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.52

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24