summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Simplify charToHex()John Mark Bell2009-07-071-36/+9
| | | | svn path=/trunk/libcss/; revision=8384
* Compute absolute values for all length properties.John Mark Bell2009-07-042-6/+1018
| | | | | | | Make initial border-*-color match the computed color. Compute correct value of display/float wrt position. svn path=/trunk/libcss/; revision=8317
* Add callback to make client compute the font size.John Mark Bell2009-07-042-11/+48
| | | | | | Some progress towards computing absolute values. svn path=/trunk/libcss/; revision=8311
* Ensure that any properties explicitly set to inherit on the root element are ↵John Mark Bell2009-07-043-114/+189
| | | | | | set to their initial values. svn path=/trunk/libcss/; revision=8309
* Move quotes property into common style block.John Mark Bell2009-07-044-33/+27
| | | | svn path=/trunk/libcss/; revision=8307
* Query client for initial values of color, font-family, quotes, and ↵John Mark Bell2009-07-045-306/+348
| | | | | | voice-family properties. svn path=/trunk/libcss/; revision=8306
* Factor out setting of property values from hints or initial values.John Mark Bell2009-07-041-65/+73
| | | | | | Invert logic, so that "continue" does not occur. svn path=/trunk/libcss/; revision=8295
* Merge iterations across computed styleJohn Mark Bell2009-07-041-60/+59
| | | | svn path=/trunk/libcss/; revision=8294
* Similar fix for empty rules in normal stylesheets.John Mark Bell2009-07-011-0/+5
| | | | svn path=/trunk/libcss/; revision=8244
* Blank inline styles, or inline styles that only contain invalid data will ↵John Mark Bell2009-07-011-5/+6
| | | | | | have no bytecode. This is perfectly legitimate, so should not result in an error. svn path=/trunk/libcss/; revision=8243
* 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
* Ensure that charset detection always returns CSS_OK unless there's a fatal ↵John Mark Bell2009-07-011-4/+2
| | | | | | error. Otherwise, it's possible to fail to process any of a short stylesheet (sheet.length < "@charset "). svn path=/trunk/libcss/; revision=8241
* Len already includes the NUL, so stop trying to manually terminate url/title.John Mark Bell2009-07-011-2/+0
| | | | svn path=/trunk/libcss/; revision=8231
* 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-016-19/+80
| | | | svn path=/trunk/libcss/; revision=8228
* It somewhat helps to ensure that you convert units to their external ↵John Mark Bell2009-06-301-23/+83
| | | | | | representation. Oddly enough, not doing so causes comedy breakage. svn path=/trunk/libcss/; revision=8204
* Introduce an initial value of border-*-color in the computed style.John Mark Bell2009-06-301-4/+4
| | | | | | When a style is composed, this will be resolved to whatever color: computed to. svn path=/trunk/libcss/; revision=8184
* Fix setting of computed display: noneJohn Mark Bell2009-06-291-1/+1
| | | | svn path=/trunk/libcss/; revision=8159
* Ensure that the root element has its styling set to the initial values.John Mark Bell2009-06-291-3/+10
| | | | svn path=/trunk/libcss/; revision=8158
* 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
* Purge "colour" from the public API -- it's just confusingJohn Mark Bell2009-06-272-22/+22
| | | | svn path=/trunk/libcss/; revision=8035
* Reduce inlining in lexerJohn Mark Bell2009-06-271-26/+26
| | | | svn path=/trunk/libcss/; revision=8034
* 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-266-96/+383
| | | | svn path=/trunk/libcss/; revision=8024
* Tidying codeJohn Mark Bell2009-06-261-42/+79
| | | | svn path=/trunk/libcss/; revision=8018
* Make selection ignore selectors generated by rules in inactive @media blocks.John Mark Bell2009-06-261-6/+44
| | | | svn path=/trunk/libcss/; revision=8015
* Nested block support.John Mark Bell2009-06-264-152/+356
| | | | 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
* Font shorthand propertyJohn Mark Bell2009-06-255-2/+261
| | | | svn path=/trunk/libcss/; revision=7989
* Documentation and context restoration on error.John Mark Bell2009-06-251-300/+196
| | | | | | Make font-family parser use generic comma-separated list parser svn path=/trunk/libcss/; revision=7985