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

LibWeb: Remove unused BrowsingContext::create_a_new_browsing_context()

Became unused after introducing
create_a_new_browsing_context_and_document() used in navigables.
This commit is contained in:
Aliaksandr Kalenik 2023-09-03 23:24:47 +02:00 committed by Andreas Kling
parent 24f97491bf
commit 4532584b3a
2 changed files with 0 additions and 143 deletions

View file

@ -38,8 +38,6 @@ class BrowsingContext final
JS_CELL(BrowsingContext, AbstractBrowsingContext);
public:
static JS::NonnullGCPtr<BrowsingContext> create_a_new_browsing_context(Page&, JS::GCPtr<DOM::Document> creator, JS::GCPtr<DOM::Element> embedder, BrowsingContextGroup&);
struct BrowsingContextAndDocument {
JS::NonnullGCPtr<BrowsingContext> browsing_context;
JS::NonnullGCPtr<DOM::Document> document;