summaryrefslogtreecommitdiff
path: root/src/select/dispatch.c
Commit message (Collapse)AuthorAgeFilesLines
* Put the column properties in the computed style's uncommon section.Michael Drake2014-10-041-8/+8
|
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-011-1/+6
| | | | | | | | 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.
* Add support for parsing the writing-mode property. Thanks to Caitlin Potter.Caitlin Potter2013-09-101-0/+5
|
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-281-0/+55
| | | | | | | | | | | | | | | | | | + 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 support for opacity propertyJohn Mark Bell2011-01-291-0/+5
| | | | svn path=/trunk/libcss/; revision=11527
* Ensure there are zero global symbols without css_ or css__ in front of them. ↵Daniel Silverstone2011-01-201-4/+4
| | | | | | 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-2/+1
| | | | | | r=jmb,kinnison,vince svn path=/trunk/libcss/; revision=11408
* Add string vector capability to stylesheet (r=jmb)Vincent Sanders2010-12-051-1/+1
| | | | | | Move properties ready for split svn path=/trunk/libcss/; revision=11005
* Correct management of string references in computed styles.John Mark Bell2010-04-041-4/+4
| | | | svn path=/trunk/libcss/; revision=10240
* Make libcss suitable for the new libwapcaplet behaviour.Daniel Silverstone2010-03-281-397/+107
| | | | svn path=/trunk/libcss/; revision=10168
* It turns out that using magic values for text-align is simpler than having ↵John Mark Bell2009-08-221-8/+0
| | | | | | an entirely new property for html alignment. svn path=/trunk/libcss/; revision=9387
* Wrong -- it inheritsJohn Mark Bell2009-08-211-1/+1
| | | | svn path=/trunk/libcss/; revision=9380
* -libcss-align is not inheritedJohn Mark Bell2009-08-211-1/+1
| | | | svn path=/trunk/libcss/; revision=9379
* -libcss-alignJohn Mark Bell2009-08-211-0/+8
| | | | svn path=/trunk/libcss/; revision=9378
* Move quotes property into common style block.John Mark Bell2009-07-041-1/+1
| | | | svn path=/trunk/libcss/; revision=8307
* Make dispatch.c legibleJohn Mark Bell2009-03-231-100/+792
| | | | svn path=/trunk/libcss/; revision=6822
* Completely change the approach used for presentational hints.John Mark Bell2009-03-231-100/+100
| | | | | | | | This one stands a chance of working sanely. While this compiles, please don't expect it to link. svn path=/trunk/libcss/; revision=6820
* Add compose entry to property dispatch table.John Mark Bell2009-03-021-99/+99
| | | | | | | Implement css_computed_style_compose() in terms of this. Don't expect this to link -- none of the composition functions exist. svn path=/trunk/libcss/; revision=6675
* Move property dispatch table out of select.c so it can be used by the ↵John Mark Bell2009-02-151-0/+115
computed style composition code. svn path=/trunk/libcss/; revision=6523