summaryrefslogtreecommitdiff
path: root/src/parse/propstrings.h
Commit message (Collapse)AuthorAgeFilesLines
* Add support for SVG stroke-opacity propertyMichael Orlitzky2023-10-011-4/+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-16/+17
| | | | | | | 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.
* properties: position: Add support for 'sticky' valueMichael Drake2022-11-031-1/+1
|
* properties: display: Add grid valuesMichael Drake2022-10-291-0/+1
|
* Parse: Propstrings: Add unset and revertMichael Drake2022-08-291-2/+2
|
* add css 3.1 complex predefined counter styles for addative systemsVincent Sanders2021-02-151-1/+2
|
* implement the remaining css 3.1 simple predefined counter stylesVincent Sanders2021-02-121-1/+4
|
* implement the firt half of the css 3.1 simple predefined counter stylesVincent Sanders2021-02-091-0/+3
|
* Strings: Add 'infinite'.Michael Drake2019-03-101-1/+1
|
* Propstrings: add AND, ONLY, ORJohn-Mark Bell2019-03-101-1/+1
|
* Parsing: Add support for parsing the flexbox properties.Lucas Neves2017-10-211-23/+25
|
* Strip trailing whitespace.Michael Drake2017-09-041-21/+21
|
* Parsing: Add support for parsing the CSS3 box-sizing property.Michael Drake2017-04-271-4/+5
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-011-9/+9
| | | | | | | | 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-2/+3
|
* Add common CSS tokens to stylesheet string table.Michael Drake2012-03-291-0/+4
| | | | svn path=/trunk/libcss/; revision=13771
* Add parsing of CSS3 Multi-column layout module shorthand properties. ↵Michael Drake2012-02-031-5/+5
| | | | | | (columns & column-rule) svn path=/trunk/libcss/; revision=13416
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-281-18/+21
| | | | | | | | | | | | | | | | | | + 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
* @font-face support. Credit: James MontgomerieJohn Mark Bell2011-12-041-2/+3
| | | | | | Things missing: parser tests; the following descriptors: font-feature-settings, font-stretch, font-variant, unicode-range. svn path=/trunk/libcss/; revision=13244
* Tidy upJohn Mark Bell2011-10-061-7/+0
| | | | svn path=/trunk/libcss/; revision=12973
* Avoid interning propstrings table for every stylesheet, style tag and style ↵Michael Drake2011-10-061-0/+3
| | | | | | attribute. svn path=/trunk/libcss/; revision=12972
* CSS3 NamespacesJohn Mark Bell2011-03-121-1/+1
| | | | svn path=/trunk/libcss/; revision=11972
* CSS3 SelectorsJohn Mark Bell2011-01-311-1/+4
| | | | svn path=/trunk/libcss/; revision=11557
* Add support for opacity propertyJohn Mark Bell2011-01-291-1/+1
| | | | svn path=/trunk/libcss/; revision=11527
* Centralise handling of transparent colours.John Mark Bell2011-01-291-1/+1
| | | | | | Add support for currentColor svn path=/trunk/libcss/; revision=11525
* add hsl colour supportVincent Sanders2011-01-211-1/+1
| | | | svn path=/trunk/libcss/; revision=11429
* Ensure there are zero global symbols without css_ or css__ in front of them. ↵Daniel Silverstone2011-01-201-2/+2
| | | | | | This helps prevent confusion if someone else wants a function called parse_background or similar svn path=/trunk/libcss/; revision=11416
* Hack around platform headers doing the likes of typedef float FLOAT;John Mark Bell2010-12-291-7/+7
| | | | svn path=/trunk/libcss/; revision=11138
* Add support for rgba() colours. Thanks jmb.Michael Drake2010-12-051-1/+2
| | | | svn path=/trunk/libcss/; revision=10993
* It turns out that using magic values for text-align is simpler than having ↵John Mark Bell2009-08-221-3/+3
| | | | | | an entirely new property for html alignment. svn path=/trunk/libcss/; revision=9387
* -libcss-alignJohn Mark Bell2009-08-211-2/+2
| | | | svn path=/trunk/libcss/; revision=9378
* Padding shorthand property parserJohn Mark Bell2009-06-251-1/+1
| | | | svn path=/trunk/libcss/; revision=7999
* Margin shorthand parserJohn Mark Bell2009-06-251-6/+7
| | | | svn path=/trunk/libcss/; revision=7997
* List-style shorthand parserJohn Mark Bell2009-06-251-8/+8
| | | | svn path=/trunk/libcss/; revision=7994
* Font shorthand propertyJohn Mark Bell2009-06-251-2/+2
| | | | svn path=/trunk/libcss/; revision=7989
* Factor out common parts of pause-after and pause-before parsers.John Mark Bell2009-06-251-8/+8
| | | | | | cue and pause shorthands svn path=/trunk/libcss/; revision=7983
* Border and outline shorthand property parsersJohn Mark Bell2009-06-251-19/+21
| | | | svn path=/trunk/libcss/; revision=7956
* Parse background shorthand propertyJohn Mark Bell2009-06-191-7/+8
| | | | svn path=/trunk/libcss/; revision=7874
* More refactoring groundwork. This actually compiles and passes the testsuite.John Mark Bell2009-05-261-459/+3
| | | | svn path=/trunk/libcss/; revision=7556
* Support named colours.John Mark Bell2009-04-011-1/+183
| | | | | | Fix malformed declaration test data -- everything up to and including the next semicolon is dropped on the floor. svn path=/trunk/libcss/; revision=7020
* Parse media type list in @import ruleJohn Mark Bell2009-02-141-0/+16
| | | | svn path=/trunk/libcss/; revision=6490
* Distinguish between pseudo classes and pseudo elementsJohn Mark Bell2009-02-101-1/+22
| | | | svn path=/trunk/libcss/; revision=6406
* Fix azimuthJohn Mark Bell2009-01-161-6/+9
| | | | svn path=/trunk/libcss/; revision=6107
* Beginnings of a colour specifier parser.John Mark Bell2009-01-111-2/+3
| | | | svn path=/trunk/libcss/; revision=6037
* text-decorationJohn Mark Bell2009-01-101-2/+6
| | | | svn path=/trunk/libcss/; revision=6018
* play-duringJohn Mark Bell2009-01-101-1/+3
| | | | svn path=/trunk/libcss/; revision=6016
* voice-familyJohn Mark Bell2009-01-101-1/+4
| | | | svn path=/trunk/libcss/; revision=6015
* A little more work on font-family.John Mark Bell2008-12-051-0/+6
| | | | svn path=/trunk/libcss/; revision=5883
* cursorJohn Mark Bell2008-12-041-1/+19
| | | | svn path=/trunk/libcss/; revision=5880
* Changes to the encoding of content in bytecode to better match the spec.John Mark Bell2008-12-031-1/+9
| | | | | | Beginnings of a content property parser. svn path=/trunk/libcss/; revision=5874