mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Added a bloom filter to CSS selector matching.
This commit is contained in:
parent
d161d0ad47
commit
acd83ff47b
20 changed files with 817 additions and 78 deletions
|
@ -38,6 +38,7 @@ pub enum TimeProfilerCategory {
|
|||
CompositingCategory,
|
||||
LayoutQueryCategory,
|
||||
LayoutPerformCategory,
|
||||
LayoutMaxSelectorMatchesCategory,
|
||||
LayoutStyleRecalcCategory,
|
||||
LayoutSelectorMatchCategory,
|
||||
LayoutTreeBuilderCategory,
|
||||
|
@ -66,6 +67,7 @@ impl TimeProfilerCategory {
|
|||
buckets.insert(CompositingCategory, vec!());
|
||||
buckets.insert(LayoutQueryCategory, vec!());
|
||||
buckets.insert(LayoutPerformCategory, vec!());
|
||||
buckets.insert(LayoutMaxSelectorMatchesCategory, vec!());
|
||||
buckets.insert(LayoutStyleRecalcCategory, vec!());
|
||||
buckets.insert(LayoutSelectorMatchCategory, vec!());
|
||||
buckets.insert(LayoutTreeBuilderCategory, vec!());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue