summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Git ignoresDaniel Silverstone2012-06-042-0/+5
| | | | svn path=/trunk/libcss/; revision=13949
* Fix up documentation liesJohn Mark Bell2012-05-291-8/+3
| | | | svn path=/trunk/libcss/; revision=13933
* Fix error reportingJohn Mark Bell2012-05-081-5/+5
| | | | svn path=/trunk/libcss/; revision=13916
* correctly apply enum casts to avoid warnings about casting between Vincent Sanders2012-04-142-42/+43
| | | | | | disimmilar enumerations. svn path=/trunk/libcss/; revision=13868
* Complete widows and orphans support. Thanks to James Montgomerie.Michael Drake2012-04-138-38/+236
| | | | svn path=/trunk/libcss/; revision=13864
* Bring example back up to date. Note: untested.Michael Drake2012-04-121-32/+196
| | | | svn path=/trunk/libcss/; revision=13856
* Fix debug build (warnings about comparing different enums).François Revel2012-04-062-36/+42
| | | | svn path=/trunk/libcss/; revision=13810
* Remove pedantic from CFLAGS ready for wapcaplet reworkDaniel Silverstone2012-03-291-1/+1
| | | | svn path=/trunk/libcss/; revision=13772
* Add common CSS tokens to stylesheet string table.Michael Drake2012-03-292-0/+11
| | | | svn path=/trunk/libcss/; revision=13771
* Fix comma at end of enumerator list warning.François Revel2012-03-251-1/+1
| | | | svn path=/trunk/libcss/; revision=13709
* Use correct unit enum values for computed clip rectangleRob Kendrick2012-03-251-1/+1
| | | | svn path=/trunk/libcss/; revision=13651
* 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
* Bump version numberVincent Sanders2012-02-271-1/+1
| | | | svn path=/trunk/libcss/; revision=13482
* 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-038-6/+973
| | | | | | (columns & column-rule) svn path=/trunk/libcss/; revision=13416
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-2827-115/+2655
| | | | | | | | | | | | | | | | | | + 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 some tests.Michael Drake2012-01-283-0/+22
| | | | svn path=/trunk/libcss/; revision=13411
* Fix \!important for opacity property.Michael Drake2012-01-272-0/+29
| | | | svn path=/trunk/libcss/; revision=13410
* Fix test build.Michael Drake2012-01-262-4/+4
| | | | svn path=/trunk/libcss/; revision=13409
* Fix font-face defaults (credit: James Montgomerie)John Mark Bell2012-01-241-1/+10
| | | | svn path=/trunk/libcss/; revision=13406
* @font-face support. Credit: James MontgomerieJohn Mark Bell2011-12-0422-52/+1577
| | | | | | Things missing: parser tests; the following descriptors: font-feature-settings, font-stretch, font-variant, unicode-range. svn path=/trunk/libcss/; revision=13244
* Fall back to UA's default font family if no generic family is specified in ↵John Mark Bell2011-12-041-10/+48
| | | | | | | | the input CSS. Based on a patch from James Montgomerie. svn path=/trunk/libcss/; revision=13227
* Simplify cache loop criterion.Michael Drake2011-11-071-2/+3
| | | | svn path=/trunk/libcss/; revision=13134
* Fill reject cache backwards from end.Michael Drake2011-11-072-7/+8
| | | | svn path=/trunk/libcss/; revision=13133
* Code style tweak.Michael Drake2011-11-061-1/+1
| | | | svn path=/trunk/libcss/; revision=13132
* Avoid trying to add already-cached selectors to reject cache. Remove ↵Michael Drake2011-11-061-24/+15
| | | | | | pre-insertion search. svn path=/trunk/libcss/; revision=13131
* Fix regression introduced by reject cache: do not cache failure to match ↵John Mark Bell2011-11-051-0/+1
| | | | | | multi-detailed selectors svn path=/trunk/libcss/; revision=13126
* Selection micro optimisation.Michael Drake2011-11-041-15/+17
| | | | svn path=/trunk/libcss/; revision=13120
* Don't need to match CSS_SELECTOR_ELEMENT detail since it will always match.Michael Drake2011-11-041-8/+13
| | | | svn path=/trunk/libcss/; revision=13119
* Cache rejected ancestor class/ID selectors to improve selection efficiencyJohn Mark Bell2011-11-042-8/+102
| | | | svn path=/trunk/libcss/; revision=13118
* Extend lifetime of property stringsJohn Mark Bell2011-10-063-9/+16
| | | | 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
* Bump version numberJohn Mark Bell2011-09-181-1/+1
| | | | svn path=/trunk/libcss/; revision=12817
* Explicitly narrow resultJohn Mark Bell2011-09-061-1/+1
| | | | svn path=/trunk/libcss/; revision=12769
* Appease ancient compilersJohn Mark Bell2011-09-061-3/+9
| | | | svn path=/trunk/libcss/; revision=12765
* A bunch more microoptimisationsJohn Mark Bell2011-09-063-101/+74
| | | | svn path=/trunk/libcss/; revision=12746
* Iterate over pseudo elements, then properties, and reject unused pseudo ↵John Mark Bell2011-09-051-16/+15
| | | | | | | | elements at the earliest opportunity. Avoids pointlessly iterating over count(unused-pseudo-element) * count(properties) properties. svn path=/trunk/libcss/; revision=12744
* Compute node name, id, and classes once, instead of once per stylesheetJohn Mark Bell2011-09-052-48/+51
| | | | svn path=/trunk/libcss/; revision=12743
* Hoist string internment into selection context constructor.John Mark Bell2011-09-052-305/+302
| | | | | | Destroy interned strings from selection context destructor. svn path=/trunk/libcss/; revision=12742
* Add a few more tests.Michael Drake2011-09-031-0/+1782
| | | | svn path=/trunk/libcss/; revision=12706
* Fix cursor URL dump.Michael Drake2011-09-031-1/+1
| | | | svn path=/trunk/libcss/; revision=12705
* Make "params" argument to css_stylesheet_create const. Thanks to James ↵Michael Drake2011-09-022-2/+2
| | | | | | Montgomerie. svn path=/trunk/libcss/; revision=12697
* Add support for selecting page-break-{before, after, inside}John Mark Bell2011-08-2311-64/+300
| | | | | | Credit: James Montgomerie svn path=/trunk/libcss/; revision=12645
* Fix build with GCC 4.6John Mark Bell2011-07-2614-45/+5
| | | | svn path=/trunk/libcss/; revision=12627
* Add a few tests.Michael Drake2011-05-261-0/+33
| | | | svn path=/trunk/libcss/; revision=12446
* Fix a bunch of warnings.Michael Drake2011-05-261-35/+109
| | | | svn path=/trunk/libcss/; revision=12445
* Fix warning.Michael Drake2011-05-261-1/+2
| | | | svn path=/trunk/libcss/; revision=12444
* make pkgconf not happen when clean target calledVincent Sanders2011-04-191-6/+8
| | | | svn path=/trunk/libcss/; revision=12204