LibWeb: Remove MatchingRule::contains_root_pseudo_class member

This can be a local variable while building a rule cache, no need to
take up space in MatchingRule.
This commit is contained in:
Andreas Kling 2024-09-09 13:52:07 +02:00 committed by Andreas Kling
commit 49d2b11085
Notes: github-actions[bot] 2024-09-09 18:13:17 +00:00
2 changed files with 5 additions and 5 deletions

View file

@ -91,7 +91,6 @@ struct MatchingRule {
u32 specificity { 0 };
CascadeOrigin cascade_origin;
bool contains_pseudo_element { false };
bool contains_root_pseudo_class { false };
bool can_use_fast_matches { false };
bool skip { false };
};