/* * 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 selector = parse_selector(CSS::ParsingContext(*this), selector_text); if (!selector.has_value()) return {}; dump_selector(selector.value()); RefPtr result; for_each_in_inclusive_subtree_of_type([&](auto& element) { if (SelectorEngine::matches(selector.value(), element)) { result = element; return IterationDecision::Break; } return IterationDecision::Continue; }); return result; } NonnullRefPtrVector ParentNode::query_selector_all(const StringView& selector_text) { auto selector = parse_selector(CSS::ParsingContext(*this), selector_text); if (!selector.has_value()) return {}; dump_selector(selector.value()); NonnullRefPtrVector elements; for_each_in_inclusive_subtree_of_type([&](auto& element) { if (SelectorEngine::matches(selector.value(), 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; } }