LibWeb: Implement ParentNode.append

This commit is contained in:
Luke Wilde 2022-01-29 20:45:17 +00:00 committed by Andreas Kling
commit 34dfdc3f37
Notes: sideshowbarker 2024-07-17 19:56:28 +09:00
5 changed files with 21 additions and 0 deletions

View file

@ -31,6 +31,7 @@ public:
NonnullRefPtr<HTMLCollection> get_elements_by_tag_name_ns(FlyString const&, FlyString const&);
ExceptionOr<void> prepend(Vector<Variant<NonnullRefPtr<Node>, String>> const& nodes);
ExceptionOr<void> append(Vector<Variant<NonnullRefPtr<Node>, String>> const& nodes);
protected:
ParentNode(Document& document, NodeType type)