mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:27:35 +00:00
LibWeb: Implement ParentNode.append
This commit is contained in:
parent
d5c96c3ccf
commit
34dfdc3f37
5 changed files with 21 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue