| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> | 
					
						
							| 
									
										
										
										
											2021-07-12 14:58:03 +01:00
										 |  |  |  * Copyright (c) 2021, Sam Atkins <atkinssj@gmail.com> | 
					
						
							| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 21:00:44 +02:00
										 |  |  | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-07 10:32:51 +01:00
										 |  |  | #include <LibWeb/CSS/SelectorEngine.h>
 | 
					
						
							|  |  |  | #include <LibWeb/DOM/Document.h>
 | 
					
						
							|  |  |  | #include <LibWeb/DOM/Element.h>
 | 
					
						
							|  |  |  | #include <LibWeb/DOM/Text.h>
 | 
					
						
							| 
									
										
										
										
											2020-08-12 14:46:53 +02:00
										 |  |  | #include <LibWeb/HTML/AttributeNames.h>
 | 
					
						
							| 
									
										
										
										
											2021-01-01 18:12:33 +01:00
										 |  |  | #include <LibWeb/HTML/HTMLElement.h>
 | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-26 20:01:35 +02:00
										 |  |  | namespace Web::SelectorEngine { | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 14:13:29 +01:00
										 |  |  | static bool matches_hover_pseudo_class(DOM::Element const& element) | 
					
						
							| 
									
										
										
										
											2019-10-14 17:54:17 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     auto* hovered_node = element.document().hovered_node(); | 
					
						
							|  |  |  |     if (!hovered_node) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     if (&element == hovered_node) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     return element.is_ancestor_of(*hovered_node); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 14:58:03 +01:00
										 |  |  | static bool matches_attribute(CSS::Selector::SimpleSelector::Attribute const& attribute, DOM::Element const& element) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (attribute.match_type) { | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::HasAttribute: | 
					
						
							|  |  |  |         return element.has_attribute(attribute.name); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::ExactValueMatch: | 
					
						
							|  |  |  |         return element.attribute(attribute.name) == attribute.value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::ContainsWord: | 
					
						
							| 
									
										
										
										
											2021-07-14 13:31:49 +02:00
										 |  |  |         return element.attribute(attribute.name).split_view(' ').contains_slow(attribute.value); | 
					
						
							| 
									
										
										
										
											2021-07-12 14:58:03 +01:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::ContainsString: | 
					
						
							|  |  |  |         return element.attribute(attribute.name).contains(attribute.value); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::StartsWithSegment: | 
					
						
							| 
									
										
										
										
											2021-07-14 13:31:49 +02:00
										 |  |  |         return element.attribute(attribute.name).split_view('-').first() == attribute.value; | 
					
						
							| 
									
										
										
										
											2021-07-12 14:58:03 +01:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::StartsWithString: | 
					
						
							|  |  |  |         return element.attribute(attribute.name).starts_with(attribute.value); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::EndsWithString: | 
					
						
							|  |  |  |         return element.attribute(attribute.name).ends_with(attribute.value); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::Attribute::MatchType::None: | 
					
						
							|  |  |  |         VERIFY_NOT_REACHED(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  | static bool matches_pseudo_class(CSS::Selector::SimpleSelector::PseudoClass const& pseudo_class, DOM::Element const& element) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |     switch (pseudo_class.type) { | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::None: | 
					
						
							| 
									
										
										
										
											2019-10-14 17:54:17 +02:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Link: | 
					
						
							|  |  |  |         return element.is_link(); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Visited: | 
					
						
							| 
									
										
										
										
											2020-06-13 00:21:42 +02:00
										 |  |  |         // FIXME: Maybe match this selector sometimes?
 | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Active: | 
					
						
							|  |  |  |         return element.is_active(); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Hover: | 
					
						
							|  |  |  |         return matches_hover_pseudo_class(element); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Focus: | 
					
						
							|  |  |  |         return element.is_focused(); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::FirstChild: | 
					
						
							|  |  |  |         return !element.previous_element_sibling(); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::LastChild: | 
					
						
							|  |  |  |         return !element.next_element_sibling(); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::OnlyChild: | 
					
						
							|  |  |  |         return !(element.previous_element_sibling() || element.next_element_sibling()); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Empty: | 
					
						
							|  |  |  |         return !(element.first_child_of_type<DOM::Element>() || element.first_child_of_type<DOM::Text>()); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Root: | 
					
						
							|  |  |  |         return is<HTML::HTMLElement>(element); | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::FirstOfType: | 
					
						
							| 
									
										
										
										
											2021-04-06 12:23:32 +02:00
										 |  |  |         for (auto* sibling = element.previous_element_sibling(); sibling; sibling = sibling->previous_element_sibling()) { | 
					
						
							|  |  |  |             if (sibling->tag_name() == element.tag_name()) | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::LastOfType: | 
					
						
							| 
									
										
										
										
											2021-04-06 13:06:25 +02:00
										 |  |  |         for (auto* sibling = element.next_element_sibling(); sibling; sibling = sibling->next_element_sibling()) { | 
					
						
							|  |  |  |             if (sibling->tag_name() == element.tag_name()) | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Disabled: | 
					
						
							| 
									
										
										
										
											2021-05-23 22:36:36 +02:00
										 |  |  |         if (!element.tag_name().equals_ignoring_case(HTML::TagNames::input)) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         if (!element.has_attribute("disabled")) | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Enabled: | 
					
						
							| 
									
										
										
										
											2021-05-23 22:36:36 +02:00
										 |  |  |         if (!element.tag_name().equals_ignoring_case(HTML::TagNames::input)) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         if (element.has_attribute("disabled")) | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Checked: | 
					
						
							| 
									
										
										
										
											2021-05-23 22:36:36 +02:00
										 |  |  |         if (!element.tag_name().equals_ignoring_case(HTML::TagNames::input)) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         if (!element.has_attribute("checked")) | 
					
						
							|  |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2021-07-12 17:58:47 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::Not: | 
					
						
							|  |  |  |         for (auto& selector : pseudo_class.not_selector) { | 
					
						
							|  |  |  |             if (matches(selector, element)) | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::NthChild: | 
					
						
							|  |  |  |     case CSS::Selector::SimpleSelector::PseudoClass::Type::NthLastChild: | 
					
						
							|  |  |  |         auto const step_size = pseudo_class.nth_child_pattern.step_size; | 
					
						
							|  |  |  |         auto const offset = pseudo_class.nth_child_pattern.offset; | 
					
						
							| 
									
										
										
										
											2021-05-08 23:19:25 +03:00
										 |  |  |         if (step_size == 0 && offset == 0) | 
					
						
							|  |  |  |             return false; // "If both a and b are equal to zero, the pseudo-class represents no element in the document tree."
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 14:13:29 +01:00
										 |  |  |         auto const* parent = element.parent_element(); | 
					
						
							| 
									
										
										
										
											2021-05-08 23:19:25 +03:00
										 |  |  |         if (!parent) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         int index = 1; | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         if (pseudo_class.type == CSS::Selector::SimpleSelector::PseudoClass::Type::NthChild) { | 
					
						
							| 
									
										
										
										
											2021-05-11 17:13:57 +03:00
										 |  |  |             for (auto* child = parent->first_child_of_type<DOM::Element>(); child && child != &element; child = child->next_element_sibling()) | 
					
						
							|  |  |  |                 ++index; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             for (auto* child = parent->last_child_of_type<DOM::Element>(); child && child != &element; child = child->previous_element_sibling()) | 
					
						
							|  |  |  |                 ++index; | 
					
						
							| 
									
										
										
										
											2021-05-08 23:19:25 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (step_size < 0) { | 
					
						
							|  |  |  |             // When "step_size" is negative, selector represents first "offset" elements in document tree.
 | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |             return !(offset <= 0 || index > offset); | 
					
						
							| 
									
										
										
										
											2021-05-08 23:19:25 +03:00
										 |  |  |         } else if (step_size == 1) { | 
					
						
							|  |  |  |             // When "step_size == 1", selector represents last "offset" elements in document tree.
 | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |             return !(offset < 0 || index < offset); | 
					
						
							| 
									
										
										
										
											2021-05-08 23:19:25 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Like "a % b", but handles negative integers correctly.
 | 
					
						
							| 
									
										
										
										
											2021-07-12 14:13:29 +01:00
										 |  |  |         auto const canonical_modulo = [](int a, int b) -> int { | 
					
						
							| 
									
										
										
										
											2021-05-08 23:19:25 +03:00
										 |  |  |             int c = a % b; | 
					
						
							|  |  |  |             if ((c < 0 && b > 0) || (c > 0 && b < 0)) { | 
					
						
							|  |  |  |                 c += b; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return c; | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (step_size == 0) { | 
					
						
							|  |  |  |             // Avoid divide by zero.
 | 
					
						
							|  |  |  |             if (index != offset) { | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else if (canonical_modulo(index - offset, step_size) != 0) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bool matches(CSS::Selector::SimpleSelector const& component, DOM::Element const& element) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |     switch (component.type) { | 
					
						
							| 
									
										
										
										
											2020-07-26 20:01:35 +02:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::Universal: | 
					
						
							| 
									
										
										
										
											2019-11-19 18:22:12 +01:00
										 |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2020-07-26 20:01:35 +02:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::Id: | 
					
						
							| 
									
										
										
										
											2020-05-26 23:27:22 +02:00
										 |  |  |         return component.value == element.attribute(HTML::AttributeNames::id); | 
					
						
							| 
									
										
										
										
											2020-07-26 20:01:35 +02:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::Class: | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |         return element.has_class(component.value); | 
					
						
							| 
									
										
										
										
											2020-07-26 20:01:35 +02:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::TagName: | 
					
						
							| 
									
										
										
										
											2020-07-23 18:18:13 +02:00
										 |  |  |         return component.value == element.local_name(); | 
					
						
							| 
									
										
										
										
											2021-07-12 14:58:03 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::Attribute: | 
					
						
							|  |  |  |         return matches_attribute(component.attribute, element); | 
					
						
							| 
									
										
										
										
											2021-07-12 16:18:00 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::PseudoClass: | 
					
						
							|  |  |  |         return matches_pseudo_class(component.pseudo_class, element); | 
					
						
							| 
									
										
										
										
											2021-07-12 16:34:18 +01:00
										 |  |  |     case CSS::Selector::SimpleSelector::Type::PseudoElement: | 
					
						
							|  |  |  |         // FIXME: Implement pseudo-elements.
 | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY_NOT_REACHED(); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 14:13:29 +01:00
										 |  |  | static bool matches(CSS::Selector const& selector, int component_list_index, DOM::Element const& element) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     auto& relative_selector = selector.compound_selectors()[component_list_index]; | 
					
						
							|  |  |  |     for (auto& simple_selector : relative_selector.simple_selectors) { | 
					
						
							|  |  |  |         if (!matches(simple_selector, element)) | 
					
						
							| 
									
										
										
										
											2019-11-27 20:37:36 +01:00
										 |  |  |             return false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     switch (relative_selector.combinator) { | 
					
						
							|  |  |  |     case CSS::Selector::Combinator::None: | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     case CSS::Selector::Combinator::Descendant: | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY(component_list_index != 0); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |         for (auto* ancestor = element.parent(); ancestor; ancestor = ancestor->parent()) { | 
					
						
							| 
									
										
										
										
											2020-07-26 19:37:56 +02:00
										 |  |  |             if (!is<DOM::Element>(*ancestor)) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |                 continue; | 
					
						
							| 
									
										
										
										
											2021-06-24 19:53:42 +02:00
										 |  |  |             if (matches(selector, component_list_index - 1, verify_cast<DOM::Element>(*ancestor))) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |                 return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     case CSS::Selector::Combinator::ImmediateChild: | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY(component_list_index != 0); | 
					
						
							| 
									
										
										
										
											2020-07-26 19:37:56 +02:00
										 |  |  |         if (!element.parent() || !is<DOM::Element>(*element.parent())) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2021-06-24 19:53:42 +02:00
										 |  |  |         return matches(selector, component_list_index - 1, verify_cast<DOM::Element>(*element.parent())); | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     case CSS::Selector::Combinator::NextSibling: | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY(component_list_index != 0); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |         if (auto* sibling = element.previous_element_sibling()) | 
					
						
							| 
									
										
										
										
											2019-11-27 20:37:36 +01:00
										 |  |  |             return matches(selector, component_list_index - 1, *sibling); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     case CSS::Selector::Combinator::SubsequentSibling: | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY(component_list_index != 0); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |         for (auto* sibling = element.previous_element_sibling(); sibling; sibling = sibling->previous_element_sibling()) { | 
					
						
							| 
									
										
										
										
											2019-11-27 20:37:36 +01:00
										 |  |  |             if (matches(selector, component_list_index - 1, *sibling)) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |                 return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     case CSS::Selector::Combinator::Column: | 
					
						
							| 
									
										
										
										
											2021-04-29 21:16:28 +02:00
										 |  |  |         TODO(); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |     VERIFY_NOT_REACHED(); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 14:13:29 +01:00
										 |  |  | bool matches(CSS::Selector const& selector, DOM::Element const& element) | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-23 15:24:33 +01:00
										 |  |  |     VERIFY(!selector.compound_selectors().is_empty()); | 
					
						
							|  |  |  |     return matches(selector, selector.compound_selectors().size() - 1, element); | 
					
						
							| 
									
										
										
										
											2019-10-08 15:33:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |