mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Remove accidentally committed changes from b72f067f0d
This commit is contained in:
parent
5ff355c0cd
commit
5a58f42e3c
Notes:
sideshowbarker
2024-07-18 22:47:53 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/5a58f42e3c2
3 changed files with 1 additions and 8 deletions
|
@ -183,12 +183,6 @@ RefPtr<Node> Node::append_child(NonnullRefPtr<Node> node, bool notify)
|
|||
return node;
|
||||
}
|
||||
|
||||
RefPtr<Node> Node::remove_child(NonnullRefPtr<Node> node)
|
||||
{
|
||||
TreeNode<Node>::remove_child(node);
|
||||
return node;
|
||||
}
|
||||
|
||||
RefPtr<Node> Node::insert_before(NonnullRefPtr<Node> node, RefPtr<Node> child, bool notify)
|
||||
{
|
||||
if (!child)
|
||||
|
|
|
@ -82,7 +82,6 @@ public:
|
|||
|
||||
RefPtr<Node> append_child(NonnullRefPtr<Node>, bool notify = true);
|
||||
RefPtr<Node> insert_before(NonnullRefPtr<Node> node, RefPtr<Node> child, bool notify = true);
|
||||
RefPtr<Node> remove_child(NonnullRefPtr<Node>);
|
||||
|
||||
virtual RefPtr<Layout::Node> create_layout_node();
|
||||
|
||||
|
|
|
@ -11,6 +11,6 @@ interface Node : EventTarget {
|
|||
|
||||
Node appendChild(Node node);
|
||||
Node insertBefore(Node node, Node? child);
|
||||
Node removeChild(Node child);
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue