summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Bump version numberJohn Mark Bell2011-04-071-1/+1
| | | | svn path=/trunk/libcss/; revision=12161
* Use _ALIGNED to stop gcc complaining about casts increasing alignment ↵John Mark Bell2011-04-011-1/+1
| | | | | | requirements on ARM platforms svn path=/trunk/libcss/; revision=12149
* Add structure versioning for client inputJohn Mark Bell2011-03-138-2/+26
| | | | svn path=/trunk/libcss/; revision=12007
* Fix selection testsJohn Mark Bell2011-03-121-12/+370
| | | | svn path=/trunk/libcss/; revision=12000
* Fix caption-side dumpJohn Mark Bell2011-03-121-3/+3
| | | | svn path=/trunk/libcss/; revision=11998
* Make dump_computed do inheritsDaniel Silverstone2011-03-121-11/+241
| | | | svn path=/trunk/libcss/; revision=11995
* Ensure that the uncommon extension block is initialised correctlyJohn Mark Bell2011-03-121-1/+24
| | | | svn path=/trunk/libcss/; revision=11990
* Fix set_clipJohn Mark Bell2011-03-121-2/+2
| | | | svn path=/trunk/libcss/; revision=11989
* Fix cascade of clip rectangle valueJohn Mark Bell2011-03-121-0/+1
| | | | svn path=/trunk/libcss/; revision=11988
* Fix universal selector matchingJohn Mark Bell2011-03-121-1/+5
| | | | svn path=/trunk/libcss/; revision=11980
* Saturated maths in css fixed point Vincent Sanders2011-03-124-38/+126
| | | | svn path=/trunk/libcss/; revision=11975
* CSS3 NamespacesJohn Mark Bell2011-03-1214-207/+524
| | | | svn path=/trunk/libcss/; revision=11972
* Hide the CSS computed style itself. Only expose a few simple structures ↵Daniel Silverstone2011-03-126-2087/+2372
| | | | | | which we can keep sane. All property accessors are thus hidden behind a link symbol for ABI safety svn path=/trunk/libcss/; revision=11969
* Fix warning: comma at end of enumerator listFrançois Revel2011-02-091-1/+1
| | | | svn path=/trunk/libcss/; revision=11639
* 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
* Initialise font callback pointersJohn Mark Bell2011-02-034-0/+8
| | | | svn path=/trunk/libcss/; revision=11607
* No. Just no.John Mark Bell2011-02-031-3/+0
| | | | svn path=/trunk/libcss/; revision=11606
* Minor documentation fixes.John Mark Bell2011-02-022-8/+7
| | | | | | Move typedef -- types.h was probably a bad idea, in hindsight. svn path=/trunk/libcss/; revision=11600
* add system font hookVincent Sanders2011-02-025-0/+215
| | | | 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
* The document root element cannot be the child of anythingJohn Mark Bell2011-01-311-12/+25
| | | | svn path=/trunk/libcss/; revision=11572
* Fix specificity calculation for prefix, suffix, and substring attribute ↵John Mark Bell2011-01-312-0/+24
| | | | | | | | selectors. Fix dumping of these selectors when debugging selector chains svn path=/trunk/libcss/; revision=11569
* Place negated class and id selectors in the universal hash chainJohn Mark Bell2011-01-311-2/+4
| | | | svn path=/trunk/libcss/; revision=11568
* Fix node_count_siblings() to compare the correct node names when necessaryJohn Mark Bell2011-01-311-2/+3
| | | | svn path=/trunk/libcss/; revision=11562
* CSS3 SelectorsJohn Mark Bell2011-01-3116-152/+1728
| | | | svn path=/trunk/libcss/; revision=11557
* Add support for opacity propertyJohn Mark Bell2011-01-2921-6/+333
| | | | svn path=/trunk/libcss/; revision=11527
* Centralise handling of transparent colours.John Mark Bell2011-01-2927-192/+471
| | | | | | Add support for currentColor svn path=/trunk/libcss/; revision=11525
* Provide hook for system colour name -> RGB conversionJohn Mark Bell2011-01-298-75/+170
| | | | svn path=/trunk/libcss/; revision=11522
* Rename all css_[^_] internal symbols to css__ so that they're nicely namespacedDaniel Silverstone2011-01-2651-432/+432
| | | | svn path=/trunk/libcss/; revision=11492
* Fix renaming of css_parser_parse_chunk from css_parser_css__parse_chunk to ↵Daniel Silverstone2011-01-264-5/+5
| | | | | | css__parser_parse_chunk svn path=/trunk/libcss/; revision=11491
* Fix cascade of counter-{increment,reset} on 64bit platformsJohn Mark Bell2011-01-241-3/+3
| | | | svn path=/trunk/libcss/; revision=11476
* Trivial optimisation of HSL->RGB conversionJohn Mark Bell2011-01-221-3/+4
| | | | svn path=/trunk/libcss/; revision=11456
* Use css_fixed for fixed-point arithmetic. Simplify HSL->RGB conversion a little.John Mark Bell2011-01-212-113/+103
| | | | | | Add test data for white and black svn path=/trunk/libcss/; revision=11437
* Add transparent keyword to colour value parsingVincent Sanders2011-01-212-0/+14
| | | | svn path=/trunk/libcss/; revision=11436
* improve accuracy of lightness and saturationVincent Sanders2011-01-212-28/+43
| | | | svn path=/trunk/libcss/; revision=11434
* Fix GCC3 build. LibCSS doesn't currently build natively on RO.Michael Drake2011-01-211-1/+1
| | | | svn path=/trunk/libcss/; revision=11433
* integer based HSL to RGBVincent Sanders2011-01-211-7/+15
| | | | svn path=/trunk/libcss/; revision=11432
* mostly working integer implementationVincent Sanders2011-01-212-7/+163
| | | | svn path=/trunk/libcss/; revision=11431
* improve hsl hue angle representationVincent Sanders2011-01-211-12/+14
| | | | svn path=/trunk/libcss/; revision=11430
* add hsl colour supportVincent Sanders2011-01-215-3/+190
| | | | svn path=/trunk/libcss/; revision=11429
* Fix shared library buildJohn Mark Bell2011-01-201-2/+2
| | | | svn path=/trunk/libcss/; revision=11427
* Add a few more selection tests.Michael Drake2011-01-201-156/+632
| | | | svn path=/trunk/libcss/; revision=11426
* Ensure there are zero global symbols without css_ or css__ in front of them. ↵Daniel Silverstone2011-01-20157-1055/+1055
| | | | | | This helps prevent confusion if someone else wants a function called parse_background or similar svn path=/trunk/libcss/; revision=11416