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

LibWeb: Implement "destroy the child navigable" on navigable containers

Co-authored-by: Andreas Kling <kling@serenityos.org>
This commit is contained in:
Aliaksandr Kalenik 2022-12-16 23:28:12 +01:00 committed by Andreas Kling
parent 55f1a70577
commit 934cb601c2
2 changed files with 37 additions and 0 deletions

View file

@ -33,6 +33,8 @@ public:
DOM::Document const* get_svg_document() const;
void destroy_the_child_navigable();
protected:
NavigableContainer(DOM::Document&, DOM::QualifiedName);