diff --git a/Userland/Libraries/LibWeb/CSS/SelectorEngine.cpp b/Userland/Libraries/LibWeb/CSS/SelectorEngine.cpp index cf228150a04..27159491ed6 100644 --- a/Userland/Libraries/LibWeb/CSS/SelectorEngine.cpp +++ b/Userland/Libraries/LibWeb/CSS/SelectorEngine.cpp @@ -702,7 +702,7 @@ static bool fast_matches_compound_selector(CSS::Selector::CompoundSelector const return true; } -FLATTEN bool fast_matches(CSS::Selector const& selector, Optional style_sheet_for_rule, DOM::Element const& element_to_match) +bool fast_matches(CSS::Selector const& selector, Optional style_sheet_for_rule, DOM::Element const& element_to_match) { DOM::Element const* current = &element_to_match;