summaryrefslogtreecommitdiff
path: root/src/select
Commit message (Expand)AuthorAgeFilesLines
* Length of computed bits array has increased by one byte.Michael Drake2014-06-011-2/+2
* Add support for CSS3 overflow-x and overflow-y properties.Michael Drake2014-06-019-36/+156
* 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 dup...Michael Drake2014-01-103-72/+22
* Fix filename.Michael Drake2014-01-102-1/+1
* Various changes for orphans and widows properties:Michael Drake2014-01-106-64/+22
* 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 litt...Michael Drake2013-12-151-1/+1
* 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
* Just match against universal string intern instead of checking strings length...Michael Drake2013-12-073-8/+13
* 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 u...Michael Drake2013-12-021-23/+8
* We know element/id/class names are available through the insensitive ptr now.Michael Drake2013-12-021-22/+9
* Significantly optimise CSS selection performance.Michael Drake2013-12-014-123/+444
* Fix NULL check of array. Coverity #1127067.Michael Drake2013-11-081-5/+3
* Remove redundant masks. Coverity #1127061, #1127062, #1127063, #1127064, and...Michael Drake2013-11-081-24/+6
* Add computed style accessor for writing-mode and and writing-mode to the prop...Michael Drake2013-09-102-0/+22
* Add support for parsing the writing-mode property. Thanks to Caitlin Potter.Caitlin Potter2013-09-106-2/+119
* Prioritise id and class hashes over element hash when inserting rules.Michael Drake2012-08-262-47/+108
* Skip empty/broken rules early, before we match their selector chains.Michael Drake2012-08-261-11/+13
* Fix not([node_name]) selection.Michael Drake2012-08-071-1/+7
* Clear up CLANG warnings in various property settersDaniel Silverstone2012-07-011-11/+14
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-292-2/+2
* correctly apply enum casts to avoid warnings about casting between Vincent Sanders2012-04-141-6/+6
* Complete widows and orphans support. Thanks to James Montgomerie.Michael Drake2012-04-136-38/+219
* Fix debug build (warnings about comparing different enums).François Revel2012-04-061-4/+6
* Use correct unit enum values for computed clip rectangleRob Kendrick2012-03-251-1/+1
* Add support for parsing CSS3 Multi-column layout properties:Michael Drake2012-01-2814-0/+843
* Fix font-face defaults (credit: James Montgomerie)John Mark Bell2012-01-241-1/+10
* @font-face support. Credit: James MontgomerieJohn Mark Bell2011-12-044-20/+615
* Fall back to UA's default font family if no generic family is specified in th...John Mark Bell2011-12-041-10/+48
* Simplify cache loop criterion.Michael Drake2011-11-071-2/+3
* Fill reject cache backwards from end.Michael Drake2011-11-072-7/+8
* Code style tweak.Michael Drake2011-11-061-1/+1
* Avoid trying to add already-cached selectors to reject cache. Remove pre-ins...Michael Drake2011-11-061-24/+15
* Fix regression introduced by reject cache: do not cache failure to match mult...John Mark Bell2011-11-051-0/+1
* Selection micro optimisation.Michael Drake2011-11-041-15/+17
* Don't need to match CSS_SELECTOR_ELEMENT detail since it will always match.Michael Drake2011-11-041-8/+13
* Cache rejected ancestor class/ID selectors to improve selection efficiencyJohn Mark Bell2011-11-042-8/+102
* Appease ancient compilersJohn Mark Bell2011-09-061-3/+9
* A bunch more microoptimisationsJohn Mark Bell2011-09-063-101/+74
* Iterate over pseudo elements, then properties, and reject unused pseudo eleme...John Mark Bell2011-09-051-16/+15
* Compute node name, id, and classes once, instead of once per stylesheetJohn Mark Bell2011-09-052-48/+51
* Hoist string internment into selection context constructor.John Mark Bell2011-09-052-305/+302