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

LibWeb: Add the 'opener browsing context' BrowsingContext property

This will also be used by the window.open algorithm steps.
This commit is contained in:
Idan Horowitz 2022-11-15 01:58:26 +02:00 committed by Linus Groh
parent b27f855107
commit c948873c5b
3 changed files with 12 additions and 4 deletions

View file

@ -246,6 +246,7 @@ void BrowsingContext::visit_edges(Cell::Visitor& visitor)
visitor.visit(entry.document);
visitor.visit(m_container);
visitor.visit(m_window_proxy);
visitor.visit(m_opener_browsing_context);
visitor.visit(m_group);
visitor.visit(m_parent);
visitor.visit(m_first_child);