summaryrefslogtreecommitdiff
path: root/src/parse
Commit message (Expand)AuthorAgeFilesLines
...
* Add transparent keyword to colour value parsingVincent Sanders2011-01-211-0/+6
* improve accuracy of lightness and saturationVincent Sanders2011-01-211-27/+42
* Fix GCC3 build. LibCSS doesn't currently build natively on RO.Michael Drake2011-01-211-1/+1
* integer based HSL to RGBVincent Sanders2011-01-211-7/+15
* mostly working integer implementationVincent Sanders2011-01-211-7/+49
* improve hsl hue angle representationVincent Sanders2011-01-211-12/+14
* add hsl colour supportVincent Sanders2011-01-213-3/+179
* Fix shared library buildJohn Mark Bell2011-01-201-2/+2
* Ensure there are zero global symbols without css_ or css__ in front of them. ...Daniel Silverstone2011-01-2039-431/+431
* Merge parser autogeneration and string handling refactor branch r=jmb,kinniso...Vincent Sanders2011-01-19121-11161/+3089
* simple properties split in parse similar to select in preparation for future ...Vincent Sanders2011-01-02125-10456/+11968
* Hack around platform headers doing the likes of typedef float FLOAT;John Mark Bell2010-12-295-13/+14
* Fix obvious bugDaniel Silverstone2010-12-201-1/+1
* Provide notification hook for imported stylesheets, to enable clients to para...John Mark Bell2010-12-051-0/+12
* Add support for rgba() colours. Thanks jmb.Michael Drake2010-12-053-11/+42
* alter external representation of colours to be AARRGGBB (r=jmb)Vincent Sanders2010-12-041-156/+156
* Ensure than trailing tokens are cleaned on completion of inline style parsingJohn Mark Bell2010-04-271-1/+3
* Make libcss suitable for the new libwapcaplet behaviour.Daniel Silverstone2010-03-288-513/+515
* Fix libcss to use new libwapcaplet behaviour.Daniel Silverstone2010-03-2719-912/+465
* Lose redundant assignments.John Mark Bell2009-11-225-7/+7
* It turns out that using magic values for text-align is simpler than having an...John Mark Bell2009-08-225-88/+24
* -libcss-alignJohn Mark Bell2009-08-215-2/+85
* Remove pointless todosJohn Mark Bell2009-08-031-2/+0
* s/opcode/opcode_t/John Mark Bell2009-08-031-1/+1
* More apparent warnings squashedJohn Mark Bell2009-08-021-3/+6
* Avoid potential warning.John Mark Bell2009-08-021-1/+8
* Use unsigned int for bitfields. Apparently, using uint32_t confuses some comp...John Mark Bell2009-08-021-2/+2
* More rigorous handling of EOF.John Mark Bell2009-07-311-7/+75
* If, after parsing the media list, we've ended up with no media whatsoever, th...John Mark Bell2009-07-271-1/+6
* Don't intern lower-case versions of strings. Use lwc_context_string_caseless_...John Mark Bell2009-07-2719-582/+1913
* Purge use of alloca()John Mark Bell2009-07-221-2/+10
* Fix rgb() colour parser not to swap g and b.Michael Drake2009-07-221-34/+34
* Colour names are case insensitiveJohn Mark Bell2009-07-171-1/+1
* Change mechanism for handling case sensitivity of element names. Now has anot...John Mark Bell2009-07-171-4/+1
* Hacky avoidance of element name case insensitivity. The correct solution is f...John Mark Bell2009-07-161-1/+4
* Make list-style shorthand parser attempt to parse a list-style-type value bef...John Mark Bell2009-07-071-5/+5
* Fixup parsing of empty inline styles -- previously, it would emit the START_S...John Mark Bell2009-07-011-5/+9
* It probably helps to remember that @import also contains URL data.John Mark Bell2009-07-011-1/+19
* Make all URIs absoluteJohn Mark Bell2009-07-014-18/+67
* Fix list-style shorthand parserJohn Mark Bell2009-06-271-0/+8
* Fix font shorthand parser to reject spurious instances of inheritJohn Mark Bell2009-06-271-0/+32
* Fix comma separated list parsingJohn Mark Bell2009-06-271-1/+2
* Fix border + outline shorthand property parsersJohn Mark Bell2009-06-271-0/+40
* Fix azimuth parserJohn Mark Bell2009-06-271-2/+2
* Fix cue and pause shorthand parsersJohn Mark Bell2009-06-271-0/+16
* Fix padding shorthand parser in the face of inherit.John Mark Bell2009-06-272-0/+9
* Less pointless inliningJohn Mark Bell2009-06-272-58/+58
* Fix margin shorthand parserJohn Mark Bell2009-06-261-0/+7
* It helps if you remember to disable debug againJohn Mark Bell2009-06-261-1/+1
* Support for parsing inline stylesJohn Mark Bell2009-06-263-89/+334