aboutsummaryrefslogtreecommitdiff
path: root/src/cssparser.hh
AgeCommit message (Collapse)Author
2011-06-07support !important in style attributesJohannes Hofmann
2010-11-26Support @media rules.Jeremy Henty
2010-11-21imported patch ignore-unknown-at-rules-1Jeremy Henty
2009-11-19ignore XML comment markers in CSSJohannes Hofmann
2009-06-24don't allow mixing of decimal values and percentages in rgb() colorsJohannes Hofmann
2009-06-23add support for css colors of the form rgb(255, 255, 255)Johannes Hofmann
2009-04-19wrap long lines in src/ css codecorvid
2009-04-08support CSS @import directiveJohannes Hofmann
2009-03-24rename getc() to getChar() to avoid name clash on FreeBSDJohannes Hofmann
2009-03-15move CssPropertyInfo definition to cssparser.ccJohannes Hofmann
2009-03-15camelCaseJohannes Hofmann
2009-03-15move CssTokenType into CssParser classJohannes Hofmann
2009-03-15make CSS_MAX_STR_LEN a static const integerJohannes Hofmann
2009-03-15replace a_Css_parse(), a_Css_parse_declaration() with static methodsJohannes Hofmann
2009-03-15move CssOrigin definition to css.hhJohannes Hofmann
2009-03-15remove (wrong) commentJohannes Hofmann
2009-03-15move macro definition to .cc fileJohannes Hofmann
2009-02-06switch font-weight handling to new multi type systemJohannes Hofmann
2009-02-06add type to CSS propertiesJohannes Hofmann
2009-02-06allow multiple types for CSS propertiesJohannes Hofmann
2009-02-05move CssProperty::Name and CssProperty::Value out of CssProperty classJohannes Hofmann
2009-02-02remove unused order_count parameterJohannes 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.
2009-01-30remove unused CSS parser functionsJohannes Hofmann
2009-01-17implement parsing of CSS data from style attributeJohannes Hofmann
E.g. <body style="background-color: red; font-family: arial; font-size: 30mm"> Hello World </body>
2009-01-17some constsJohannes Hofmann
2008-11-23remove unused codeJohannes Hofmann
2008-11-20Removed lots of compiler warnings, and formatted code to 80 columns.Jorge Arellano Cid
Used: indent -kr -st -sc -i3 -bad -nbbo -nut
2008-11-13move CssLength stuff to css.hhJohannes Hofmann
2008-11-13compute relative valuesJohannes Hofmann
2008-11-12support more CSS_PROPERTY_MARGIN* props; fix primary orderJohannes Hofmann
2008-11-11use CssProperty::FontWeightExtensionsJohannes Hofmann
2008-11-11more fixesJohannes Hofmann
2008-11-11import CSS parser code from dillo-0.8.0-css-3Johannes Hofmann