1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00

LibWeb: Remove unused append_child and remove_child in BrowsingContext

A part of post navigables cleanup.
This commit is contained in:
Aliaksandr Kalenik 2023-10-26 22:24:55 +02:00 committed by Andreas Kling
parent 4b5b8fc564
commit 895ec6ad09
2 changed files with 0 additions and 36 deletions

View file

@ -50,8 +50,6 @@ public:
JS::NonnullGCPtr<HTML::TraversableNavigable> top_level_traversable() const;
JS::GCPtr<BrowsingContext> parent() const { return m_parent; }
void append_child(JS::NonnullGCPtr<BrowsingContext>);
void remove_child(JS::NonnullGCPtr<BrowsingContext>);
JS::GCPtr<BrowsingContext> first_child() const;
JS::GCPtr<BrowsingContext> next_sibling() const;