summaryrefslogtreecommitdiff
path: root/src/parse
Commit message (Collapse)AuthorAgeFilesLines
* Update to use correct BUILD/HOST variables due to buildsystem changesVincent Sanders2014-12-191-1/+1
|
* strncasecmp is defined in strings.hVincent Sanders2014-09-051-0/+1
|
* Fix advancing when play-during rule has !important set.Michael Drake2014-07-241-1/+1
|
* Fix warning.Michael Drake2014-06-021-1/+2
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-017-11/+121
| | | | | | | | 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.
* ensure generation tool exits if it cannot open its output file. (coverity ↵Vincent Sanders2014-01-241-0/+1
| | | | 1127066)
* Fix destruction of wrong style. Coverity #1137922.Michael Drake2013-12-151-1/+1
|
* Update for new lpu API.Michael Drake2013-12-143-8/+6
|
* Various changes which modify API and ABI:Michael Drake2013-12-136-68/+36
| | | | | | | | | - Remove client allocation function. - Change node_classes callback not to yield array ownership to libcss. - Node bloom filters now built by, during selection libcss. - Added selection callbacks to get and set data on document nodes. Test suite, example, and documentation updated to match.
* Fixup for insensitive hash utilisation.Michael Drake2013-12-021-4/+10
|
* Ensure that element/class/id names in selector details always get their ↵Michael Drake2013-12-021-0/+18
| | | | caseless string.
* Handle css__stylesheet_style_append() returning error. Coverity #1127060.Michael Drake2013-11-081-4/+22
|
* Add computed style accessor for writing-mode and and writing-mode to the ↵Michael Drake2013-09-101-0/+1
| | | | property handler table.
* Add support for parsing the writing-mode property. Thanks to Caitlin Potter.Caitlin Potter2013-09-104-2/+11
|
* Apply slightly modified patch from Murat Gocmen.Michael Drake2013-09-101-4/+12
|
* Early return after processing @namespace.John-Mark Bell2013-04-291-0/+3
|
* ensure enough parameetrs to IDENT list existVincent Sanders2013-04-221-67/+75
|
* Hopefully silence a warningDaniel Silverstone2012-10-151-1/+1
|
* Cleanup: Remove unused UNUSED()Daniel Silverstone2012-07-191-2/+0
|
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-292-2/+2
| | | | svn path=/trunk/libcss/; revision=14004
* Git ignoresDaniel Silverstone2012-06-041-0/+2
| | | | svn path=/trunk/libcss/; revision=13949
* 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 common CSS tokens to stylesheet string table.Michael Drake2012-03-292-0/+11
| | | | svn path=/trunk/libcss/; revision=13771
* Correct type of out parameterJohn Mark Bell2012-03-242-2/+2
| | | | svn path=/trunk/libcss/; revision=13644
* Dodgy bodge to shut clang upDaniel Silverstone2012-03-241-1/+3
| | | | svn path=/trunk/libcss/; revision=13642
* Remove out-of-sync sources comment. Make source list clearer and sort it.Michael Drake2012-02-031-27/+32
| | | | svn path=/trunk/libcss/; revision=13417
* Add parsing of CSS3 Multi-column layout module shorthand properties. ↵Michael Drake2012-02-037-6/+335
| | | | | | (columns & column-rule) svn path=/trunk/libcss/; revision=13416
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-286-18/+119
| | | | | | | | | | | | | | | | | | + 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
* @font-face support. Credit: James MontgomerieJohn Mark Bell2011-12-048-13/+540
| | | | | | Things missing: parser tests; the following descriptors: font-feature-settings, font-stretch, font-variant, unicode-range. svn path=/trunk/libcss/; revision=13244
* Extend lifetime of property stringsJohn Mark Bell2011-10-061-9/+1
| | | | svn path=/trunk/libcss/; revision=12974
* Tidy upJohn Mark Bell2011-10-064-13/+7
| | | | svn path=/trunk/libcss/; revision=12973
* Avoid interning propstrings table for every stylesheet, style tag and style ↵Michael Drake2011-10-064-15/+76
| | | | | | attribute. svn path=/trunk/libcss/; revision=12972
* Fix build with GCC 4.6John Mark Bell2011-07-261-9/+0
| | | | svn path=/trunk/libcss/; revision=12627
* Saturated maths in css fixed point Vincent Sanders2011-03-123-21/+21
| | | | svn path=/trunk/libcss/; revision=11975
* CSS3 NamespacesJohn Mark Bell2011-03-124-38/+316
| | | | svn path=/trunk/libcss/; revision=11972
* Use $(GREP) instead of grepJohn Mark Bell2011-02-051-1/+1
| | | | svn path=/trunk/libcss/; revision=11614
* Use $(PERL), instead of perl.John Mark Bell2011-02-051-1/+1
| | | | | | Also, only compute the value of AUTOGEN_PARSERS once svn path=/trunk/libcss/; revision=11612
* No. Just no.John Mark Bell2011-02-031-3/+0
| | | | svn path=/trunk/libcss/; revision=11606
* add system font hookVincent Sanders2011-02-021-0/+172
| | | | svn path=/trunk/libcss/; revision=11599
* Pedantic whitespace insertionJohn Mark Bell2011-01-311-0/+1
| | | | svn path=/trunk/libcss/; revision=11574
* C89.François Revel2011-01-311-1/+2
| | | | svn path=/trunk/libcss/; revision=11573
* CSS3 SelectorsJohn Mark Bell2011-01-313-76/+423
| | | | svn path=/trunk/libcss/; revision=11557
* Add support for opacity propertyJohn Mark Bell2011-01-296-2/+86
| | | | svn path=/trunk/libcss/; revision=11527
* Centralise handling of transparent colours.John Mark Bell2011-01-297-39/+30
| | | | | | Add support for currentColor svn path=/trunk/libcss/; revision=11525
* Provide hook for system colour name -> RGB conversionJohn Mark Bell2011-01-291-8/+13
| | | | svn path=/trunk/libcss/; revision=11522
* Rename all css_[^_] internal symbols to css__ so that they're nicely namespacedDaniel Silverstone2011-01-2629-281/+281
| | | | svn path=/trunk/libcss/; revision=11492
* Fix renaming of css_parser_parse_chunk from css_parser_css__parse_chunk to ↵Daniel Silverstone2011-01-262-2/+2
| | | | | | css__parser_parse_chunk svn path=/trunk/libcss/; revision=11491
* Trivial optimisation of HSL->RGB conversionJohn Mark Bell2011-01-221-3/+4
| | | | svn path=/trunk/libcss/; revision=11456