mirror of
https://github.com/servo/servo.git
synced 2025-08-08 23:15:33 +01:00
Auto merge of #17939 - emilio:multiple-walk-selector, r=bzbarsky
style: Avoid looping through every selector more than twice. I've left the Invalidation stuff on its own since that's more complex, but I think this may help a bit (perhaps not too much though?) with the slow rebuild times. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17939) <!-- Reviewable:end -->
This commit is contained in:
commit
ba9bec6412
2 changed files with 167 additions and 171 deletions
|
@ -20,7 +20,7 @@ use style::selector_parser::{SelectorImpl, SelectorParser};
|
|||
use style::shared_lock::SharedRwLock;
|
||||
use style::stylesheets::StyleRule;
|
||||
use style::stylist::{Stylist, Rule};
|
||||
use style::stylist::needs_revalidation;
|
||||
use style::stylist::needs_revalidation_for_testing;
|
||||
use style::thread_state;
|
||||
|
||||
/// Helper method to get some Rules from selector strings.
|
||||
|
@ -126,7 +126,7 @@ fn test_revalidation_selectors() {
|
|||
// Selectors in the ancestor chain (needed for cousin sharing).
|
||||
"p:first-child span",
|
||||
]).into_iter()
|
||||
.filter(|s| needs_revalidation(&s))
|
||||
.filter(|s| needs_revalidation_for_testing(&s))
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
let reference = parse_selectors(&[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue