/[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.59 by wakaba, Mon Jan 14 11:21:22 2008 UTC revision 1.83 by wakaba, Sat Feb 2 13:42:42 2008 UTC
# Line 1  Line 1 
1    2008-02-02  Wakaba  <wakaba@suika.fam.cx>
2    
3            * Parser.pm ($default_serializer): New 'RECT' type supported.
4            ('clip'): Implemented.
5    
6    2008-01-30  Wakaba  <wakaba@suika.fam.cx>
7    
8            * Parser.pm ($default_serializer): New 'ADDCOUNTER'
9            and 'SETCOUNTER' types supported.
10            ('content'): 'counter()' and 'counters()' are supported iff
11            the property 'counter-reset' is supported.
12            ('counter-reset', 'counter-increment'): Implemented.
13    
14    2008-01-28  Wakaba  <wakaba@suika.fam.cx>
15    
16            * Parser.pm ($default_serializer): New 'CONTENT' type supported.
17            ('content'): Implemented.
18    
19    2008-01-27  Wakaba  <wakaba@suika.fam.cx>
20    
21            * Parser.pm ($default_serializer): 'QUOTES' type supported.
22            ('quotes'): Implemented.
23    
24    2008-01-27  Wakaba  <wakaba@suika.fam.cx>
25    
26            * Parser.pm ($one_keyword_parser): More accurate error location
27            reporting.
28            ('overflow-x', 'overflow-y'): Implemented.
29            ('overflow'): Reimplemented as a shorthand.
30    
31    2008-01-27  Wakaba  <wakaba@suika.fam.cx>
32    
33            * Parser.pm ('opacity' parse): Support for '+'.
34    
35    2008-01-27  Wakaba  <wakaba@suika.fam.cx>
36    
37            * Parser.pm ('letter-spacing' parse): Support for '+'.
38            ('border-spacing' serialize_multiple): Revised taking into
39            account 'import' and 'inherit'.
40            ('border-spacing' parse): Support for '+'.
41    
42    2008-01-27  Wakaba  <wakaba@suika.fam.cx>
43    
44            * Parser.pm ($parse_color): Support for '+'.  HSL to RGB
45            convertion was wrong.
46            ('orphans', 'background-position' parse): Support for '+'.
47    
48    2008-01-27  Wakaba  <wakaba@suika.fam.cx>
49    
50            * Parser.pm ('z-index', 'line-height', 'border-width' parse): Support
51            for '+'.
52            ('margin-top' parse): Fixed to report more accureate error
53            position.
54            ('right'): Negative values and 'auto' were not supported.
55    
56    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
57    
58            * Parser.pm ('font-weight' parser): Support for '+'.
59    
60            * Tokenizer.pm: Normalize number stored in |NUMBER_TOKEN|,
61            |PERCENTAGE_TOKEN|, and |DIMENSION_TOKEN|.
62    
63    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
64    
65            * Parser.pm ('font-size' parser): Support for '+'.  Fixed to
66            report more accurate error position.  Enabled the
67            support for '-webkit-xxx-large'.
68            ('font' parse): Support for '+' in <'font-weight'>
69            and <'font-size'>.
70    
71    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
72    
73            * Parser.pm ('background' serialize_multiple, 'background-position'
74            serialize_shorthand): Reimplemented taking 'inherit'
75            and 'important' into account.
76            ('background' parse): Support for '+'.  Correct initial value
77            for 'background-position-y' was not set in some cases.
78            Wrong value was set to 'background-position-x' in some case.
79            Did not return by some syntax errors.
80    
81    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
82    
83            * Parser.pm (get_char): Use argument to avoid self reference.
84    
85            * Tokenizer.pm: Set the tokenizer itself as the first
86            argument to the |get_char| function.
87    
88    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
89    
90            * Parser.pm ('border' serialize_multiple): Reimplement
91            to take 'inherit' and 'important' into account.
92    
93    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
94    
95            * Parser.pm (serialize_shorthand, serialize_multiple): The
96            leading | ! |s in the priority part were removed (now they
97            are added by |css_text| attribute implementation).
98            (border-width, border-style, border-color serialize_shorthand): Typo
99            fixed.
100    
101    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
102    
103            * Parser.pm (font serialize_shorthand): Implemented.
104            ($generic_font_keywords): Typo fixed.
105    
106    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
107    
108            * Parser.pm: Return value of |serialize_multiple| methods
109            are changed.
110            ('margin' serialize_multiple, 'padding' serialize_multiple):
111            Implemented.
112            ('border-style' serialize_shorthand, 'border-color'
113            serialize_shorthand, 'border-width' serialize_shorthand,
114            'border-left' serialize_shorthand, 'border-top' serialize_shorthand,
115            'border-bottom' serialize_shorthand, 'border-right'
116            serialize_shorthand): New.
117    
118    2008-01-24  Wakaba  <wakaba@suika.fam.cx>
119    
120            * Parser.pm (parse_char_string): Treatement for non-important
121            duplicate declarations was incorrect.
122            (margin): Use 'margin' shorthand property for serializing
123            margin-related properties if possible.  Support for the |+|
124            sign in <'margin'> is added.
125    
126    2008-01-24  Wakaba  <wakaba@suika.fam.cx>
127    
128            * Parser.pm: Support for the |+| sign in 'margin-top' and
129            similar properties.
130    
131    2008-01-22  Wakaba  <wakaba@suika.fam.cx>
132    
133            * Parser.pm (new {onerror}): The default error handler (outputting
134            to the standard error output) is defined.
135            (parse_char_string {get_char}): Set the next number to the
136            column number of the last character as the column of the
137            end of file pseudo-character.
138    
139    2008-01-20  Wakaba  <wakaba@suika.fam.cx>
140    
141            * Parser.pm, SelectorsParser.pm: Error type strings are revised.
142    
143    2008-01-20  Wakaba  <wakaba@suika.fam.cx>
144    
145            * Parser.pm, SelectorsParser.pm: |{href}| parameter added
146            to all the onerror invocations.  The |{onerror}| function
147            is no longer called with |{line}| and |{column}| parameters.
148    
149            * Tokenizer.pm: All token are now given |{line}| and |{column}|
150            values.
151    
152    2008-01-20  Wakaba  <wakaba@suika.fam.cx>
153    
154            * Parser.pm (parse_char_string): Revise |$tt->{get_char}| callback
155            so that it sets |$tt->{line}| and |$tt->{column}| options.  Some
156            error handler calling codes are modified for the experimental
157            support for more precious reporting of error location.
158    
159            * Tokenizer.pm (new): The |onerror| option has been removed, since
160            it was never used.
161            (get_next_token): Limited and experimental support for token
162            emittion with the information on the position where it occurs.
163            (serialize_token): New function.
164            
165    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
166    
167            * Parser.pm (-moz-opacity): DOM attribute name was wrong.
168    
169  2008-01-14  Wakaba  <wakaba@suika.fam.cx>  2008-01-14  Wakaba  <wakaba@suika.fam.cx>
170    
171          * Cascade.pm (get_cascaded_value): No longer have to test          * Cascade.pm (get_cascaded_value): No longer have to test

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.83

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24