Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-20 | recognize text-{top,bottom} as vertical-align values | corvid | |
2009-12-19 | fix CSS_SHORTHAND_DIRECTIONS case in CssParser | Johannes Hofmann | |
* Don't modify type parameter in tokenMatchesProperty() if there is no match. * Use correct type for each of the values parsed in a CSS_SHORTHAND_DIRECTIONS-style declaration. | |||
2009-12-18 | support border-width: thin | medium | thick | Johannes Hofmann | |
2009-12-09 | remove DISPLAY_LAST | Johannes Hofmann | |
2009-12-08 | add DISPLAY_NONE | Johannes Hofmann | |
2009-12-08 | add support for CSS property list-style-position | Johannes Hofmann | |
2009-11-20 | don't loop on unterminated CSS comments | Johannes Hofmann | |
2009-11-19 | ignore XML comment markers in CSS | Johannes Hofmann | |
2009-11-15 | properly parse comma separated list of font-family names in CSS parser | Johannes Hofmann | |
2009-10-18 | use letter spacing when drawing | corvid | |
2009-10-17 | add letter-spacing support to CSS subsystem | Johannes Hofmann | |
The implementation in the fltk backend is still missing. | |||
2009-09-23 | fix css *resize cursor values | corvid | |
2009-09-20 | trim some spaces | corvid | |
2009-07-11 | make CssSimpleSelector members private | Johannes Hofmann | |
2009-06-24 | bgr -> rgb | Johannes Hofmann | |
2009-06-24 | don't allow mixing of decimal values and percentages in rgb() colors | Johannes Hofmann | |
2009-06-23 | whitespace | Johannes Hofmann | |
2009-06-23 | add support for css colors of the form rgb(255, 255, 255) | Johannes Hofmann | |
2009-06-22 | remove system includes | corvid | |
2009-04-22 | whitespace | Jorge Arellano Cid | |
2009-04-19 | wrap long lines in src/ css code | corvid | |
2009-04-08 | properly skip ';' after @import directive | Johannes Hofmann | |
2009-04-08 | support CSS @import directive | Johannes Hofmann | |
2009-03-24 | rename getc() to getChar() to avoid name clash on FreeBSD | Johannes Hofmann | |
2009-03-23 | allow negative values for specific CSS properties only | Johannes Hofmann | |
This needs to be done at parser level, so that alternative settings can overrule a faulty negative one. Testcase: <html> <head> <style type="text/css" > #foo {padding: -1px; background-color: green} .bar {padding: 10px} </style> </head> <body> <div id="foo" class="bar">should be green and have 10px padding</div> </body> </html> | |||
2009-03-23 | whitespace | Johannes Hofmann | |
2009-03-15 | move CssPropertyInfo definition to cssparser.cc | Johannes Hofmann | |
2009-03-15 | camelCase | Johannes Hofmann | |
2009-03-15 | initialize CssParser::within_block | Johannes Hofmann | |
2009-03-15 | make CSS_MAX_STR_LEN a static const integer | Johannes Hofmann | |
2009-03-15 | replace a_Css_parse(), a_Css_parse_declaration() with static methods | Johannes Hofmann | |
2009-03-15 | add CssParser constructor | Johannes Hofmann | |
2009-03-15 | make CssParser a class | Johannes Hofmann | |
2009-03-15 | move macro definition to .cc file | Johannes Hofmann | |
2009-03-12 | replace CSS_LENGTH_* macros with inline functions | Johannes Hofmann | |
2009-03-10 | add support for negative numbers in CSS parser | Johannes Hofmann | |
2009-03-06 | fix CSS string parsing bug | Johannes Hofmann | |
2009-02-27 | add CSS parser todos | Johannes Hofmann | |
2009-02-26 | don't accept classes or id's starting with integer | Johannes Hofmann | |
2009-02-26 | css parsing numbers | corvid | |
Recognize floats starting with '.' (e.g. ".5") as required by CSS 2.1. | |||
2009-02-09 | whitespace cleanup: 's/ +$//g' | Jorge Arellano Cid | |
2009-02-06 | support font-size enum values | Johannes Hofmann | |
2009-02-06 | set type in CssPropertyList::set() | Johannes Hofmann | |
2009-02-06 | remove check | Johannes Hofmann | |
2009-02-06 | switch font-weight handling to new multi type system | Johannes Hofmann | |
2009-02-06 | fix check for 'none' in Css_token_matches_property() | Johannes Hofmann | |
2009-02-06 | add type to CSS properties | Johannes Hofmann | |
2009-02-06 | allow multiple types for CSS properties | Johannes Hofmann | |
2009-02-05 | move CssProperty::Name and CssProperty::Value out of CssProperty class | Johannes Hofmann | |
2009-02-02 | remove unused order_count parameter | Johannes Hofmann | |
It seems that in dillo-0.8.0-css-3 it was used to make sure that later definitions of the same CSS property have more weight than previous ones. If for example a first stylesheet sets background-color to black, and a second stylesheet sets it to green, green should win. But as we currently parese everything in order (throughing away all parsed CSS data when a new CSS stylesheet has arrived), we don't need to remember the original ordering of stylesheets. |