summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Improve src/parse/important.c coverage to 98.4%Michael Drake2014-07-242-0/+449
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-016-58/+262
| | | | | | | | 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.
* print size_t values in a portable wayDavid Tardon2014-01-131-5/+7
| | | | Signed-off-by: John-Mark Bell <jmb@netsurf-browser.org>
* Update for new lpu API.Michael Drake2013-12-142-19/+2
|
* Various changes which modify API and ABI:Michael Drake2013-12-1312-1731/+119
| | | | | | | | | - 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.
* Add selection test using bloom filter.Michael Drake2013-12-013-1/+1633
|
* Update for new selection API.Michael Drake2013-12-011-1/+7
|
* Update test dumpers to output writing-mode.Michael Drake2013-09-102-0/+36
|
* Add tests for writing-mode. Update selection tests to handle writing-mode.Michael Drake2013-09-103-0/+208
|
* Fix test data for border shorthand property.Michael Drake2013-09-101-0/+40
|
* Add a couple of letter spacing tests.Michael Drake2013-06-191-0/+184
|
* Don't use the nonportable alloca() during tests.Anthony J. Bentley2013-04-272-2/+6
|
* Initialise variables used in lwc out params.John-Mark Bell2012-07-191-8/+8
|
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-291-1/+1
| | | | svn path=/trunk/libcss/; revision=14004
* Fix error reportingJohn Mark Bell2012-05-081-5/+5
| | | | svn path=/trunk/libcss/; revision=13916
* Add parsing of CSS3 Multi-column layout module shorthand properties. ↵Michael Drake2012-02-031-0/+638
| | | | | | (columns & column-rule) svn path=/trunk/libcss/; revision=13416
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-284-1/+1289
| | | | | | | | | | | | | | | | | | + 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-271-0/+24
| | | | svn path=/trunk/libcss/; revision=13410
* Fix test build.Michael Drake2012-01-262-4/+4
| | | | svn path=/trunk/libcss/; revision=13409
* @font-face support. Credit: James MontgomerieJohn Mark Bell2011-12-043-4/+303
| | | | | | Things missing: parser tests; the following descriptors: font-feature-settings, font-stretch, font-variant, unicode-range. svn path=/trunk/libcss/; revision=13244
* 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
* 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
* Add structure versioning for client inputJohn Mark Bell2011-03-134-0/+6
| | | | 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
* Fix universal selector matchingJohn Mark Bell2011-03-121-1/+5
| | | | svn path=/trunk/libcss/; revision=11980
* CSS3 NamespacesJohn Mark Bell2011-03-123-71/+73
| | | | svn path=/trunk/libcss/; revision=11972
* Hide the CSS computed style itself. Only expose a few simple structures ↵Daniel Silverstone2011-03-121-3/+0
| | | | | | which we can keep sane. All property accessors are thus hidden behind a link symbol for ABI safety svn path=/trunk/libcss/; revision=11969
* Initialise font callback pointersJohn Mark Bell2011-02-034-0/+8
| | | | svn path=/trunk/libcss/; revision=11607
* 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-316-27/+882
| | | | svn path=/trunk/libcss/; revision=11557
* Add support for opacity propertyJohn Mark Bell2011-01-294-0/+87
| | | | svn path=/trunk/libcss/; revision=11527
* Centralise handling of transparent colours.John Mark Bell2011-01-298-116/+322
| | | | | | Add support for currentColor svn path=/trunk/libcss/; revision=11525
* Provide hook for system colour name -> RGB conversionJohn Mark Bell2011-01-294-21/+72
| | | | svn path=/trunk/libcss/; revision=11522
* Rename all css_[^_] internal symbols to css__ so that they're nicely namespacedDaniel Silverstone2011-01-266-25/+25
| | | | svn path=/trunk/libcss/; revision=11492
* Fix renaming of css_parser_parse_chunk from css_parser_css__parse_chunk to ↵Daniel Silverstone2011-01-261-2/+2
| | | | | | css__parser_parse_chunk svn path=/trunk/libcss/; revision=11491
* Use css_fixed for fixed-point arithmetic. Simplify HSL->RGB conversion a little.John Mark Bell2011-01-211-1/+17
| | | | | | Add test data for white and black svn path=/trunk/libcss/; revision=11437
* Add transparent keyword to colour value parsingVincent Sanders2011-01-211-0/+8
| | | | svn path=/trunk/libcss/; revision=11436
* improve accuracy of lightness and saturationVincent Sanders2011-01-211-1/+1
| | | | svn path=/trunk/libcss/; revision=11434
* mostly working integer implementationVincent Sanders2011-01-211-0/+114
| | | | svn path=/trunk/libcss/; revision=11431
* add hsl colour supportVincent Sanders2011-01-212-0/+11
| | | | svn path=/trunk/libcss/; revision=11429
* 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-208-53/+53
| | | | | | 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-1916-74/+586
| | | | | | r=jmb,kinnison,vince svn path=/trunk/libcss/; revision=11408
* Add a few more selection tests.Michael Drake2011-01-191-0/+508
| | | | svn path=/trunk/libcss/; revision=11387