summaryrefslogtreecommitdiff
path: root/src/parse/properties/properties.h
Commit message (Collapse)AuthorAgeFilesLines
* Add support for SVG stroke-opacity propertyMichael Orlitzky2023-10-011-0/+4
| | | | | | | | https://www.w3.org/TR/SVGTiny12/painting.html#StrokeOpacityProperty This property is unique to SVG documents, but is otherwise analogous to the usual CSS "opacity" property (and the recently-added SVG fill-opacity property).
* Add support for SVG fill-opacity propertyMichael Orlitzky2023-10-011-0/+4
| | | | | | | https://www.w3.org/TR/SVGTiny12/painting.html#FillOpacityProperty This property is unique to SVG documents, but is otherwise analogous to the usual CSS "opacity" property.
* Avoid integer types with platform dependent sizeDeltaVonNeumann2023-06-171-146/+146
|
* parse: properties: Add property-specific unit class masks.Michael Drake2020-11-151-0/+113
| | | | | | | | | There's a table we can index into for calc(): const uint32_t property_unit_mask[CSS_N_PROPERTIES] And there are #defines for where the code is already property-specific, avoiding the lookup.
* Parsing: Add support for parsing the flexbox properties.Lucas Neves2017-10-211-1/+36
|
* Strip trailing whitespace.Michael Drake2017-09-041-111/+111
|
* Parsing: Add support for parsing the CSS3 box-sizing property.Michael Drake2017-04-271-0/+3
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-011-1/+7
| | | | | | | | Now, overflow is a shorthand property setting both overflow-x and overflow-y. The getter for the computed overflow has been removed, and replaced with two for overflow-x and overflow-y.
* Add support for parsing the writing-mode property. Thanks to Caitlin Potter.Caitlin Potter2013-09-101-0/+3
|
* Add parsing of CSS3 Multi-column layout module shorthand properties. ↵Michael Drake2012-02-031-0/+6
| | | | | | (columns & column-rule) svn path=/trunk/libcss/; revision=13416
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-281-0/+33
| | | | | | | | | | | | | | | | | | + break-after + break-before + break-inside + column-count + column-fill + column-gap + column-rule-color + column-rule-style + column_rule-width + column_span + column_width TODO: Shorthand properties (columns, column-rule) TODO: Selection svn path=/trunk/libcss/; revision=13412
* Add support for opacity propertyJohn Mark Bell2011-01-291-0/+3
| | | | svn path=/trunk/libcss/; revision=11527
* Ensure there are zero global symbols without css_ or css__ in front of them. ↵Daniel Silverstone2011-01-201-117/+117
| | | | | | This helps prevent confusion if someone else wants a function called parse_background or similar svn path=/trunk/libcss/; revision=11416
* Merge parser autogeneration and string handling refactor branch ↵Vincent Sanders2011-01-191-116/+116
| | | | | | r=jmb,kinnison,vince svn path=/trunk/libcss/; revision=11408
* It turns out that using magic values for text-align is simpler than having ↵John Mark Bell2009-08-221-3/+0
| | | | | | an entirely new property for html alignment. svn path=/trunk/libcss/; revision=9387
* -libcss-alignJohn Mark Bell2009-08-211-0/+3
| | | | svn path=/trunk/libcss/; revision=9378
* Padding shorthand property parserJohn Mark Bell2009-06-251-0/+3
| | | | svn path=/trunk/libcss/; revision=7999
* Margin shorthand parserJohn Mark Bell2009-06-251-0/+3
| | | | svn path=/trunk/libcss/; revision=7997
* List-style shorthand parserJohn Mark Bell2009-06-251-0/+3
| | | | svn path=/trunk/libcss/; revision=7994
* Font shorthand propertyJohn Mark Bell2009-06-251-0/+3
| | | | svn path=/trunk/libcss/; revision=7989
* Factor out common parts of pause-after and pause-before parsers.John Mark Bell2009-06-251-0/+6
| | | | | | cue and pause shorthands svn path=/trunk/libcss/; revision=7983
* Border and outline shorthand property parsersJohn Mark Bell2009-06-251-0/+27
| | | | svn path=/trunk/libcss/; revision=7956
* Parse background shorthand propertyJohn Mark Bell2009-06-191-0/+3
| | | | svn path=/trunk/libcss/; revision=7874
* More refactoring groundwork. This actually compiles and passes the testsuite.John Mark Bell2009-05-261-0/+3
| | | | svn path=/trunk/libcss/; revision=7556
* Groundwork for property parser refactoring.John Mark Bell2009-05-261-0/+321
svn path=/trunk/libcss/; revision=7555