summaryrefslogtreecommitdiff
path: root/test/parse2-auto.c
Commit message (Collapse)AuthorAgeFilesLines
* Various changes which modify API and ABI:Michael Drake2013-12-131-9/+1
| | | | | | | | | - 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 structure versioning for client inputJohn Mark Bell2011-03-131-0/+1
| | | | svn path=/trunk/libcss/; revision=12007
* Initialise font callback pointersJohn Mark Bell2011-02-031-0/+2
| | | | svn path=/trunk/libcss/; revision=11607
* Provide hook for system colour name -> RGB conversionJohn Mark Bell2011-01-291-3/+16
| | | | svn path=/trunk/libcss/; revision=11522
* Ensure there are zero global symbols without css_ or css__ in front of them. ↵Daniel Silverstone2011-01-201-5/+5
| | | | | | 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-1/+9
| | | | | | r=jmb,kinnison,vince svn path=/trunk/libcss/; revision=11408
* Provide notification hook for imported stylesheets, to enable clients to ↵John Mark Bell2010-12-051-1/+1
| | | | | | parallelise their processing svn path=/trunk/libcss/; revision=10999
* Remove Aliases file nonsenseJohn Mark Bell2010-12-041-4/+4
| | | | svn path=/trunk/libcss/; revision=10983
* Remove use of lwc_initialise and also parserutils.h includes. r=vinceDaniel Silverstone2010-12-041-19/+0
| | | | svn path=/trunk/libcss/; revision=10964
* Remove initialisation of libparserutils from testsDaniel Silverstone2010-12-041-4/+0
| | | | svn path=/trunk/libcss/; revision=10962
* Remove libcss_initialise/finalise.John Mark Bell2010-12-041-2/+3
| | | | | | Fix testsuite to compile (it passes, too) svn path=/trunk/libcss/; revision=10955
* Make libcss suitable for the new libwapcaplet behaviour.Daniel Silverstone2010-03-281-4/+30
| | | | svn path=/trunk/libcss/; revision=10168
* Fix libcss to use new libwapcaplet behaviour.Daniel Silverstone2010-03-271-8/+6
| | | | | | | TODO: update the tests to include a refcounting proof svn path=/trunk/libcss/; revision=10162
* Origin and media are not properties of the stylesheet. John Mark Bell2010-01-121-2/+2
| | | | | | | | | They are properties of the context in which the stylesheet is used. Therefore, for top-level sheets, this information must be provided at selection time. For child sheets, the origin is inherited from their parent and the applicable media types are specified on the linking mechanism. svn path=/trunk/libcss/; revision=9802
* Make all URIs absoluteJohn Mark Bell2009-07-011-1/+13
| | | | svn path=/trunk/libcss/; revision=8228
* Support for parsing inline stylesJohn Mark Bell2009-06-261-1/+1
| | | | svn path=/trunk/libcss/; revision=8024
* More c89ismsJohn Mark Bell2009-04-151-2/+3
| | | | svn path=/trunk/libcss/; revision=7100
* Quirks mode parsingJohn Mark Bell2009-02-151-1/+1
| | | | svn path=/trunk/libcss/; revision=6519
* Port libcss to libwapcaplet.Daniel Silverstone2009-02-141-3/+7
| | | | | | | | | It passes the tests, perhaps we need more of them. Lifetimes of lwc_string objects really need attention before we can consider this finished. svn path=/trunk/libcss/; revision=6517
* Rework handling of imported stylesheets.John Mark Bell2009-02-141-1/+1
| | | | | | No longer is the client called back mid-parse. Instead, they must acquire details of and process imported stylesheets after css_stylesheet_data_done() has been called on the parent sheet. The return code of css_stylesheet_data_done() informs the client of the need to process imported sheets. svn path=/trunk/libcss/; revision=6504
* Squash warningsJohn Mark Bell2009-01-201-2/+2
| | | | svn path=/trunk/libcss/; revision=6149
* Purge stylesheet dumping code from the library.John Mark Bell2009-01-191-2035/+1
| | | | | | | Create a common header for the test harnesses to use, instead. Fix z-index dumping while we're at it. svn path=/trunk/libcss/; revision=6146
* Another test harness for parser tests. This one compares the reserialised ↵John Mark Bell2009-01-191-0/+2235
output, thus allowing us to sensibly test handling of invalid input and suchlike. Also, some rudimentary tests using this harness, and some documentation of the test data format. This doesn't use the dumping code from the library itself, as that's likely to disappear. svn path=/trunk/libcss/; revision=6144