1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

LibWeb: Delete unused create_a_new_browsing_context_group()

Became unused after introducing
create_a_new_browsing_context_group_and_document() used in navigables
This commit is contained in:
Aliaksandr Kalenik 2023-09-03 23:22:41 +02:00 committed by Andreas Kling
parent 6665f0db43
commit 24f97491bf
2 changed files with 0 additions and 19 deletions

View file

@ -18,8 +18,6 @@ class BrowsingContextGroup final : public JS::Cell {
JS_CELL(BrowsingContextGroup, JS::Cell);
public:
static JS::NonnullGCPtr<BrowsingContextGroup> create_a_new_browsing_context_group(Page&);
struct BrowsingContextGroupAndDocument {
JS::NonnullGCPtr<HTML::BrowsingContextGroup> browsing_context;
JS::NonnullGCPtr<DOM::Document> document;