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

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.51

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24