summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/BrowsingContextGroup.cpp
AgeCommit message (Collapse)Author
2023-04-26LibWeb: Implement creation of fresh top-level traversablesAliaksandr Kalenik
Co-authored-by: Andreas Kling <kling@serenityos.org>
2023-04-20LibWeb/HTML: Store NonnullGCPtr in browsing context group setLinus Groh
These are never supposed to be null.
2023-04-20LibWeb/HTML: Store NonnullGCPtr in browsing context setLinus Groh
These are never supposed to be null.
2022-10-20LibWeb: Make BrowsingContext GC-allocatedAndreas Kling
(And BrowsingContextGroup had to come along for the ride as well.) This solves a number of nasty reference cycles between browsing contexts, history items, and their documents.
2022-09-20LibWeb: Implement "browsing context group" concept from the HTML specAndreas Kling