/* * Copyright (c) 2020, Luke Wilde * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace Web::DOM { RefPtr ParentNode::query_selector(const StringView& selector_text) { auto maybe_selectors = parse_selector(CSS::ParsingContext(*this), selector_text); if (!maybe_selectors.has_value()) return {}; auto selectors = maybe_selectors.value(); for (auto& selector : selectors) dump_selector(selector); RefPtr result; for_each_in_inclusive_subtree_of_type([&](auto& element) { for (auto& selector : selectors) { if (SelectorEngine::matches(selector, element)) { result = element; return IterationDecision::Break; } } return IterationDecision::Continue; }); return result; } NonnullRefPtrVector ParentNode::query_selector_all(const StringView& selector_text) { auto maybe_selectors = parse_selector(CSS::ParsingContext(*this), selector_text); if (!maybe_selectors.has_value()) return {}; auto selectors = maybe_selectors.value(); for (auto& selector : selectors) dump_selector(selector); NonnullRefPtrVector elements; for_each_in_inclusive_subtree_of_type([&](auto& element) { for (auto& selector : selectors) { if (SelectorEngine::matches(selector, element)) { elements.append(element); } } return IterationDecision::Continue; }); return elements; } RefPtr ParentNode::first_element_child() { return first_child_of_type(); } RefPtr ParentNode::last_element_child() { return last_child_of_type(); } // https://dom.spec.whatwg.org/#dom-parentnode-childelementcount u32 ParentNode::child_element_count() const { u32 count = 0; for (auto* child = first_child(); child; child = child->next_sibling()) { if (is(child)) ++count; } return count; } }