summaryrefslogtreecommitdiff
path: root/src/parse/properties/properties.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for SVG stroke-opacity propertyMichael Orlitzky2023-10-011-0/+2
| | | | | | | | 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/+2
| | | | | | | 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.
* parse: properties: Add property-specific unit class masks.Michael Drake2020-11-151-0/+128
| | | | | | | | | 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/+12
|
* Parsing: Add support for parsing the CSS3 box-sizing property.Michael Drake2017-04-271-0/+1
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-011-0/+2
| | | | | | | | 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 computed style accessor for writing-mode and and writing-mode to the ↵Michael Drake2013-09-101-0/+1
| | | | property handler table.
* Add parsing of CSS3 Multi-column layout module shorthand properties. ↵Michael Drake2012-02-031-0/+2
| | | | | | (columns & column-rule) svn path=/trunk/libcss/; revision=13416
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-281-0/+11
| | | | | | | | | | | | | | | | | | + 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/+1
| | | | svn path=/trunk/libcss/; revision=11527
* Ensure there are zero global symbols without css_ or css__ in front of them. ↵Daniel Silverstone2011-01-201-115/+115
| | | | | | This helps prevent confusion if someone else wants a function called parse_background or similar svn path=/trunk/libcss/; revision=11416
* It turns out that using magic values for text-align is simpler than having ↵John Mark Bell2009-08-221-2/+1
| | | | | | an entirely new property for html alignment. svn path=/trunk/libcss/; revision=9387
* -libcss-alignJohn Mark Bell2009-08-211-0/+1
| | | | svn path=/trunk/libcss/; revision=9378
* Padding shorthand property parserJohn Mark Bell2009-06-251-0/+1
| | | | svn path=/trunk/libcss/; revision=7999
* Margin shorthand parserJohn Mark Bell2009-06-251-0/+1
| | | | svn path=/trunk/libcss/; revision=7997
* List-style shorthand parserJohn Mark Bell2009-06-251-0/+1
| | | | svn path=/trunk/libcss/; revision=7994
* Font shorthand propertyJohn Mark Bell2009-06-251-0/+1
| | | | svn path=/trunk/libcss/; revision=7989
* Factor out common parts of pause-after and pause-before parsers.John Mark Bell2009-06-251-0/+2
| | | | | | cue and pause shorthands svn path=/trunk/libcss/; revision=7983
* Border and outline shorthand property parsersJohn Mark Bell2009-06-251-0/+9
| | | | svn path=/trunk/libcss/; revision=7956
* Parse background shorthand propertyJohn Mark Bell2009-06-191-0/+1
| | | | svn path=/trunk/libcss/; revision=7874
* Remove unnecessary includesJohn Mark Bell2009-05-271-7/+0
| | | | svn path=/trunk/libcss/; revision=7576
* Move display parserJohn Mark Bell2009-05-271-71/+0
| | | | svn path=/trunk/libcss/; revision=7573
* Split out remaining UI property parsersJohn Mark Bell2009-05-271-266/+0
| | | | svn path=/trunk/libcss/; revision=7572
* Move color parser to text.cJohn Mark Bell2009-05-271-54/+0
| | | | svn path=/trunk/libcss/; revision=7571
* Split out visual effects and stacking property parsersJohn Mark Bell2009-05-271-272/+0
| | | | svn path=/trunk/libcss/; revision=7570
* Split out table-related property parsersJohn Mark Bell2009-05-271-123/+0
| | | | svn path=/trunk/libcss/; revision=7569
* Move float and alignment property parsers into positioning.cJohn Mark Bell2009-05-271-183/+0
| | | | svn path=/trunk/libcss/; revision=7568
* Split out box sizing property parsersJohn Mark Bell2009-05-271-491/+0
| | | | svn path=/trunk/libcss/; revision=7567
* Split out text-related property parsersJohn Mark Bell2009-05-271-485/+0
| | | | svn path=/trunk/libcss/; revision=7566
* Quotes property is also generated content, so move to appropriate fileJohn Mark Bell2009-05-271-158/+0
| | | | svn path=/trunk/libcss/; revision=7565
* Split out page-related property parsers.John Mark Bell2009-05-271-255/+0
| | | | svn path=/trunk/libcss/; revision=7564
* Split out positioning property parsersJohn Mark Bell2009-05-261-306/+0
| | | | svn path=/trunk/libcss/; revision=7563
* Split out margin and padding property parsers.John Mark Bell2009-05-261-198/+0
| | | | svn path=/trunk/libcss/; revision=7562
* Split out font property parsersJohn Mark Bell2009-05-261-615/+0
| | | | svn path=/trunk/libcss/; revision=7561
* Split out generated content and list property parsersJohn Mark Bell2009-05-261-960/+0
| | | | svn path=/trunk/libcss/; revision=7560
* Split out border and outline property parsersJohn Mark Bell2009-05-261-530/+0
| | | | svn path=/trunk/libcss/; revision=7559
* Split out background property parsersJohn Mark Bell2009-05-261-354/+0
| | | | svn path=/trunk/libcss/; revision=7558
* Split out utility functions and aural property parsers.John Mark Bell2009-05-261-2048/+21
| | | | svn path=/trunk/libcss/; revision=7557
* More refactoring groundwork. This actually compiles and passes the testsuite.John Mark Bell2009-05-261-0/+7470
svn path=/trunk/libcss/; revision=7556