summaryrefslogtreecommitdiff
path: root/src/select
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix break-{after,before,inside} group definition.John-Mark Bell2014-12-311-3/+3
|
* Fix.Michael Drake2014-12-311-34/+38
|
* Use appropriate enum labels.Michael Drake2014-12-291-5/+5
| | | | (They have the same values anyway.)
* Fixup break-inside.Michael Drake2014-12-291-2/+27
|
* Add break-inside property support.Michael Drake2014-12-294-30/+59
|
* Add break-before property support.Michael Drake2014-12-294-35/+59
|
* Add break-after property support.Michael Drake2014-12-295-41/+72
|
* Add helpers for selecting break-* properties.Michael Drake2014-12-292-0/+52
|
* Add comment to explain choice of defaults in the default uncommon extension ↵Michael Drake2014-12-291-0/+2
| | | | block.
* Fix many default values for "uncommon" properties.Michael Drake2014-12-291-16/+32
|
* Fix broken absolute valuification of letter and word spacing properties.Michael Drake2014-12-291-4/+6
|
* Tiny optimisation for computed style absolute valuification.Michael Drake2014-12-291-3/+1
|
* Fix use of wrong enum value.Michael Drake2014-12-081-1/+1
| | | | Coverity: 1257106 Inferred misuse of enum.
* Add public accessor for column-width property.Michael Drake2014-12-061-0/+6
|
* Add column-width property to computed styles.Michael Drake2014-12-064-41/+82
|
* Add public accessor for column-span property.Michael Drake2014-12-061-0/+5
|
* Add column-span property to computed styles.Michael Drake2014-12-064-20/+67
|
* Add public computed style accessor for column-rule-width prop.Michael Drake2014-11-161-0/+6
|
* Add column-rule-width to computed styles.Michael Drake2014-11-164-49/+84
|
* Add public computed style accessor for column-rule-style property.Michael Drake2014-11-161-0/+5
|
* Add column_rule_style to computed styles.Michael Drake2014-11-164-40/+60
|
* Fix column-fill computed style offset.Michael Drake2014-11-162-2/+2
|
* Add public accessor for column-rule-color in computed styles.Michael Drake2014-11-151-0/+6
|
* Add column-rule-color to computed styles.Michael Drake2014-11-154-24/+83
|
* Remove trailing whitespace.Michael Drake2014-11-072-135/+135
|
* Add public computed style access function for column-gap property.Michael Drake2014-11-071-0/+6
|
* Implement selection for column-gap property.Michael Drake2014-11-074-39/+82
|
* Add public accessor for column-fill property value.Michael Drake2014-11-071-0/+5
|
* Implement selection for column-fill property.Michael Drake2014-11-074-17/+62
|
* Cascade and compose column-count property into computed style.Michael Drake2014-10-045-18/+84
|
* Put the column properties in the computed style's uncommon section.Michael Drake2014-10-041-8/+8
|
* No need for extern "C" stuff now that bloom.h is internal.Michael Drake2014-09-261-9/+0
|
* Length of computed bits array has increased by one byte.Michael Drake2014-06-011-2/+2
| | | | Reduce unused bytes from 2 to 1.
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-019-36/+156
| | | | | | | | 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.
* Remove implementation duplication in top/right/bottom/left property getters.Michael Drake2014-01-102-115/+85
|
* Remove duplicate implementation in css_computed_float.Michael Drake2014-01-101-15/+6
|
* Remove 9.7 handling from get_display. Delete get_display_static. Remove ↵Michael Drake2014-01-103-72/+22
| | | | duplication in css_computed_display.
* Fix filename.Michael Drake2014-01-102-1/+1
|
* Various changes for orphans and widows properties:Michael Drake2014-01-106-64/+22
| | | | | | + Keep as int internally, rather than css_fixed. + Fix get_widows to return widows instead of orphans. + Remove duplicate implementations in css_computed_ getters.
* Avoid duplicate implementations of computed style property getters.Michael Drake2014-01-102-1392/+160
|
* C89.Michael Drake2014-01-041-1/+2
|
* Attempt to make Coverity understand what's happening. I think this is a ↵Michael Drake2013-12-151-1/+1
| | | | little less readable though. #1137923.
* Fix leak. Coverity #1137921.Michael Drake2013-12-151-1/+1
|
* Improve explanation of TODO.Michael Drake2013-12-131-1/+5
|
* Hideous casing to avoid warning (treated as error) with RO toolchain.Michael Drake2013-12-131-1/+3
|
* Various changes which modify API and ABI:Michael Drake2013-12-1318-255/+542
| | | | | | | | | - 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.
* Just match against universal string intern instead of checking strings ↵Michael Drake2013-12-073-8/+13
| | | | length/data.
* Slight simplification to selector detail itterator.Michael Drake2013-12-071-3/+2
|
* Fixup for insensitive hash utilisation.Michael Drake2013-12-021-7/+27
|
* Since element/class/id names are known to have insensitive string set, just ↵Michael Drake2013-12-021-23/+8
| | | | use that hash value for hash table, instead of calculating own hash.