summaryrefslogtreecommitdiff
path: root/src/parse
Commit message (Collapse)AuthorAgeFilesLines
* Add support for rgba() colours. Thanks jmb.Michael Drake2010-12-053-11/+42
| | | | svn path=/trunk/libcss/; revision=10993
* alter external representation of colours to be AARRGGBB (r=jmb)Vincent Sanders2010-12-041-156/+156
| | | | svn path=/trunk/libcss/; revision=10985
* Ensure than trailing tokens are cleaned on completion of inline style parsingJohn Mark Bell2010-04-271-1/+3
| | | | svn path=/trunk/libcss/; revision=10501
* Make libcss suitable for the new libwapcaplet behaviour.Daniel Silverstone2010-03-288-513/+515
| | | | svn path=/trunk/libcss/; revision=10168
* Fix libcss to use new libwapcaplet behaviour.Daniel Silverstone2010-03-2719-912/+465
| | | | | | | TODO: update the tests to include a refcounting proof svn path=/trunk/libcss/; revision=10162
* Lose redundant assignments.John Mark Bell2009-11-225-7/+7
| | | | | | | | Drop some dead code. Avoid a potential NULL dereference. Add missing "break" in initial substate of block context parser svn path=/trunk/libcss/; revision=9678
* It turns out that using magic values for text-align is simpler than having ↵John Mark Bell2009-08-225-88/+24
| | | | | | an entirely new property for html alignment. svn path=/trunk/libcss/; revision=9387
* -libcss-alignJohn Mark Bell2009-08-215-2/+85
| | | | svn path=/trunk/libcss/; revision=9378
* Remove pointless todosJohn Mark Bell2009-08-031-2/+0
| | | | svn path=/trunk/libcss/; revision=9028
* s/opcode/opcode_t/John Mark Bell2009-08-031-1/+1
| | | | svn path=/trunk/libcss/; revision=9020
* More apparent warnings squashedJohn Mark Bell2009-08-021-3/+6
| | | | svn path=/trunk/libcss/; revision=8993
* Avoid potential warning.John Mark Bell2009-08-021-1/+8
| | | | svn path=/trunk/libcss/; revision=8991
* Use unsigned int for bitfields. Apparently, using uint32_t confuses some ↵John Mark Bell2009-08-021-2/+2
| | | | | | compilers. svn path=/trunk/libcss/; revision=8990
* More rigorous handling of EOF.John Mark Bell2009-07-311-7/+75
| | | | | | Expand test data for this. svn path=/trunk/libcss/; revision=8931
* If, after parsing the media list, we've ended up with no media whatsoever, ↵John Mark Bell2009-07-271-1/+6
| | | | | | then the list must have been blank, which implies CSS_MEDIA_ALL. svn path=/trunk/libcss/; revision=8822
* Don't intern lower-case versions of strings. Use ↵John Mark Bell2009-07-2719-582/+1913
| | | | | | lwc_context_string_caseless_isequal, instead. svn path=/trunk/libcss/; revision=8815
* Purge use of alloca()John Mark Bell2009-07-221-2/+10
| | | | svn path=/trunk/libcss/; revision=8715
* Fix rgb() colour parser not to swap g and b.Michael Drake2009-07-221-34/+34
| | | | svn path=/trunk/libcss/; revision=8696
* Colour names are case insensitiveJohn Mark Bell2009-07-171-1/+1
| | | | svn path=/trunk/libcss/; revision=8605
* Change mechanism for handling case sensitivity of element names. Now has ↵John Mark Bell2009-07-171-4/+1
| | | | | | | | another selection handler callback for this. Change selector hash to use an ASCII case-insensitive hash function. svn path=/trunk/libcss/; revision=8602
* Hacky avoidance of element name case insensitivity. The correct solution is ↵John Mark Bell2009-07-161-1/+4
| | | | | | for the client to tell us the sensitivity when creating the stylesheet. svn path=/trunk/libcss/; revision=8573
* Make list-style shorthand parser attempt to parse a list-style-type value ↵John Mark Bell2009-07-071-5/+5
| | | | | | before anything else. This way, list-style: none will do the right thing as list-style-image defaults to none, anyway. svn path=/trunk/libcss/; revision=8385
* Fixup parsing of empty inline styles -- previously, it would emit the ↵John Mark Bell2009-07-011-5/+9
| | | | | | START_STYLESHEET and START_RULESET events twice. svn path=/trunk/libcss/; revision=8242
* It probably helps to remember that @import also contains URL data.John Mark Bell2009-07-011-1/+19
| | | | svn path=/trunk/libcss/; revision=8229
* Make all URIs absoluteJohn Mark Bell2009-07-014-18/+67
| | | | svn path=/trunk/libcss/; revision=8228
* Fix list-style shorthand parserJohn Mark Bell2009-06-271-0/+8
| | | | svn path=/trunk/libcss/; revision=8073
* Fix font shorthand parser to reject spurious instances of inheritJohn Mark Bell2009-06-271-0/+32
| | | | svn path=/trunk/libcss/; revision=8069
* Fix comma separated list parsingJohn Mark Bell2009-06-271-1/+2
| | | | svn path=/trunk/libcss/; revision=8067
* Fix border + outline shorthand property parsersJohn Mark Bell2009-06-271-0/+40
| | | | svn path=/trunk/libcss/; revision=8066
* Fix azimuth parserJohn Mark Bell2009-06-271-2/+2
| | | | svn path=/trunk/libcss/; revision=8055
* Fix cue and pause shorthand parsersJohn Mark Bell2009-06-271-0/+16
| | | | svn path=/trunk/libcss/; revision=8051
* Fix padding shorthand parser in the face of inherit.John Mark Bell2009-06-272-0/+9
| | | | | | Document same fix to margin shorthand parser. svn path=/trunk/libcss/; revision=8049
* Less pointless inliningJohn Mark Bell2009-06-272-58/+58
| | | | svn path=/trunk/libcss/; revision=8033
* Fix margin shorthand parserJohn Mark Bell2009-06-261-0/+7
| | | | svn path=/trunk/libcss/; revision=8029
* It helps if you remember to disable debug againJohn Mark Bell2009-06-261-1/+1
| | | | svn path=/trunk/libcss/; revision=8025
* Support for parsing inline stylesJohn Mark Bell2009-06-263-89/+334
| | | | svn path=/trunk/libcss/; revision=8024
* Tidying codeJohn Mark Bell2009-06-261-42/+79
| | | | svn path=/trunk/libcss/; revision=8018
* Nested block support.John Mark Bell2009-06-262-77/+233
| | | | svn path=/trunk/libcss/; revision=8014
* Documentation and context restoration on errorJohn Mark Bell2009-06-251-19/+38
| | | | svn path=/trunk/libcss/; revision=8004
* Documentation and context restoration on errorJohn Mark Bell2009-06-251-37/+261
| | | | svn path=/trunk/libcss/; revision=8003
* Documentation and context restoration on errorJohn Mark Bell2009-06-251-9/+72
| | | | svn path=/trunk/libcss/; revision=8002
* Documentation and context restoration on errorJohn Mark Bell2009-06-251-17/+183
| | | | svn path=/trunk/libcss/; revision=8001
* Documentation and context recovery on errorJohn Mark Bell2009-06-251-19/+132
| | | | svn path=/trunk/libcss/; revision=8000
* Padding shorthand property parserJohn Mark Bell2009-06-255-1/+242
| | | | svn path=/trunk/libcss/; revision=7999
* Documentation and context restoration on errorJohn Mark Bell2009-06-251-5/+86
| | | | svn path=/trunk/libcss/; revision=7998
* Margin shorthand parserJohn Mark Bell2009-06-255-6/+248
| | | | svn path=/trunk/libcss/; revision=7997
* Documentation and context restoration on errorJohn Mark Bell2009-06-251-4/+83
| | | | svn path=/trunk/libcss/; revision=7996
* Pedantic whitespace removalJohn Mark Bell2009-06-251-1/+0
| | | | svn path=/trunk/libcss/; revision=7995
* List-style shorthand parserJohn Mark Bell2009-06-255-8/+186
| | | | svn path=/trunk/libcss/; revision=7994
* Documentation and context restoration on error.John Mark Bell2009-06-251-365/+447
| | | | | | Factor out common counter-increment and counter-reset parser svn path=/trunk/libcss/; revision=7992