summaryrefslogtreecommitdiff
path: root/src/parse/important.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for SVG stroke-opacity propertyMichael Orlitzky2023-10-011-0/+5
| | | | | | | | 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/+5
| | | | | | | 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-2/+2
|
* Parse: Important: Handle new explicit defaulting valuesMichael Drake2022-08-291-1/+1
|
* Parsing: Add support for parsing the flexbox properties.Lucas Neves2017-10-211-0/+20
|
* Strip trailing whitespace.Michael Drake2017-09-041-12/+12
|
* Fix advancing when play-during rule has !important set.Michael Drake2014-07-241-1/+1
|
* correctly apply enum casts to avoid warnings about casting between Vincent Sanders2012-04-141-36/+37
| | | | | | disimmilar enumerations. svn path=/trunk/libcss/; revision=13868
* Fix debug build (warnings about comparing different enums).François Revel2012-04-061-32/+36
| | | | svn path=/trunk/libcss/; revision=13810
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-281-0/+15
| | | | | | | | | | | | | | | | | | + 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
* Fix \!important for opacity property.Michael Drake2012-01-271-0/+5
| | | | svn path=/trunk/libcss/; revision=13410
* 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
* Merge parser autogeneration and string handling refactor branch ↵Vincent Sanders2011-01-191-139/+117
| | | | | | r=jmb,kinnison,vince svn path=/trunk/libcss/; revision=11408
* Fix libcss to use new libwapcaplet behaviour.Daniel Silverstone2010-03-271-2/+1
| | | | | | | TODO: update the tests to include a refcounting proof svn path=/trunk/libcss/; revision=10162
* s/opcode/opcode_t/John Mark Bell2009-08-031-1/+1
| | | | svn path=/trunk/libcss/; revision=9020
* Don't intern lower-case versions of strings. Use ↵John Mark Bell2009-07-271-1/+4
| | | | | | lwc_context_string_caseless_isequal, instead. svn path=/trunk/libcss/; revision=8815
* Centralise !important handling.John Mark Bell2009-06-181-0/+415
Document background-attachment parser and make it behave correctly. svn path=/trunk/libcss/; revision=7856