ladybird/Userland/Libraries/LibWeb/DOM/NonElementParentNode.h

52 lines
1.4 KiB
C
Raw Normal View History

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/FlyString.h>
#include <AK/Forward.h>
2022-09-13 17:02:25 +03:00
#include <LibJS/Heap/GCPtr.h>
#include <LibWeb/Forward.h>
#include <LibWeb/HTML/AttributeNames.h>
#include <LibWeb/TreeNode.h>
namespace Web::DOM {
template<typename NodeType>
class NonElementParentNode {
public:
JS::GCPtr<Element const> get_element_by_id(FlyString const& id) const
{
2023-02-25 20:44:51 +03:00
JS::GCPtr<Element const> found_element;
2022-04-01 20:58:27 +03:00
static_cast<NodeType const*>(this)->template for_each_in_inclusive_subtree_of_type<Element>([&](auto& element) {
if (element.id() == id) {
found_element = &element;
return IterationDecision::Break;
}
return IterationDecision::Continue;
});
return found_element;
}
2023-02-25 20:44:51 +03:00
JS::GCPtr<Element> get_element_by_id(FlyString const& id)
{
2023-02-25 20:44:51 +03:00
JS::GCPtr<Element> found_element;
static_cast<NodeType*>(this)->template for_each_in_inclusive_subtree_of_type<Element>([&](auto& element) {
if (element.id() == id) {
2023-02-25 20:44:51 +03:00
found_element = &element;
return IterationDecision::Break;
}
return IterationDecision::Continue;
});
return found_element;
}
protected:
NonElementParentNode() = default;
};
}