summaryrefslogtreecommitdiff
path: root/src/select/select.c
Commit message (Expand)AuthorAgeFilesLines
* 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-131-61/+200
* Just match against universal string intern instead of checking strings length...Michael Drake2013-12-071-0/+1
* Significantly optimise CSS selection performance.Michael Drake2013-12-011-55/+27
* Fix NULL check of array. Coverity #1127067.Michael Drake2013-11-081-5/+3
* Prioritise id and class hashes over element hash when inserting rules.Michael Drake2012-08-261-22/+83
* 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
* @font-face support. Credit: James MontgomerieJohn Mark Bell2011-12-041-19/+310
* Simplify cache loop criterion.Michael Drake2011-11-071-2/+3
* Fill reject cache backwards from end.Michael Drake2011-11-071-6/+7
* 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-041-8/+91
* A bunch more microoptimisationsJohn Mark Bell2011-09-061-38/+51
* 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-051-48/+46
* Hoist string internment into selection context constructor.John Mark Bell2011-09-051-276/+302
* Add structure versioning for client inputJohn Mark Bell2011-03-131-1/+3
* CSS3 NamespacesJohn Mark Bell2011-03-121-51/+53
* The document root element cannot be the child of anythingJohn Mark Bell2011-01-311-12/+25
* Fix specificity calculation for prefix, suffix, and substring attribute selec...John Mark Bell2011-01-311-0/+21
* CSS3 SelectorsJohn Mark Bell2011-01-311-4/+293
* Rename all css_[^_] internal symbols to css__ so that they're nicely namespacedDaniel Silverstone2011-01-261-4/+4
* Ensure there are zero global symbols without css_ or css__ in front of them. ...Daniel Silverstone2011-01-201-3/+3
* Merge parser autogeneration and string handling refactor branch r=jmb,kinniso...Vincent Sanders2011-01-191-2/+2
* Turns out, we know the size of the styles block up-front.John Mark Bell2011-01-051-3/+1
* Simultaneously select styles for base + pseudo elements.John Mark Bell2011-01-051-118/+195
* Complete the fix for pseudo element selection: inline styles and presentation...John Mark Bell2011-01-021-6/+18
* When selecting for a node's pseudo elements, only match rules which apply to ...Michael Drake2011-01-011-11/+24
* Remove ownerNode and ownerRule fields from stylesheet objects.John Mark Bell2010-06-271-3/+11
* Really fix hint leaks. Hint data ownership is passed to libcss.John Mark Bell2010-04-291-0/+3
* Fix libcss to use new libwapcaplet behaviour.Daniel Silverstone2010-03-271-51/+29
* Origin and media are not properties of the stylesheet. John Mark Bell2010-01-121-44/+74
* Lose redundant assignments.John Mark Bell2009-11-221-3/+0
* s/opcode/opcode_t/John Mark Bell2009-08-031-1/+1
* Change selector hash to segregate:John Mark Bell2009-07-291-35/+162
* Match details before considering combinators.John Mark Bell2009-07-221-14/+13
* Change mechanism for handling case sensitivity of element names. Now has anot...John Mark Bell2009-07-171-13/+2
* It is necessary to consider the element name when matching selectors. John Mark Bell2009-07-171-6/+27
* Ensure that we merge-sort the element and universal selector chains during se...John Mark Bell2009-07-171-44/+51
* Fix matching of named ancestor combinators.John Mark Bell2009-07-171-34/+166
* Fix selection from selectors within @media blocks.John Mark Bell2009-07-151-8/+14
* Fix processing of rules after @import -- previously, they were completely ign...John Mark Bell2009-07-081-1/+1
* Compute absolute values for all length properties.John Mark Bell2009-07-041-1/+1