mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Use GC::Ptr for BrowsingContext pointer saved in Document
Likely we forgot to update `WeakPtr` to `GC::Ptr` after converting `BrowsingContext` to GC-allocated object.
This commit is contained in:
parent
59a867d3e3
commit
1bf4d3391e
Notes:
github-actions[bot]
2025-07-17 14:56:57 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 1bf4d3391e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5489
Reviewed-by: https://github.com/AtkinsSJ ✅
5 changed files with 9 additions and 9 deletions
|
@ -544,6 +544,7 @@ void Document::visit_edges(Cell::Visitor& visitor)
|
|||
visitor.visit(m_inspected_node);
|
||||
visitor.visit(m_highlighted_node);
|
||||
visitor.visit(m_active_favicon);
|
||||
visitor.visit(m_browsing_context);
|
||||
visitor.visit(m_focused_element);
|
||||
visitor.visit(m_active_element);
|
||||
visitor.visit(m_target_element);
|
||||
|
@ -4239,7 +4240,7 @@ GC::Ptr<HTML::HTMLParser> Document::active_parser()
|
|||
return m_parser;
|
||||
}
|
||||
|
||||
void Document::set_browsing_context(HTML::BrowsingContext* browsing_context)
|
||||
void Document::set_browsing_context(GC::Ptr<HTML::BrowsingContext> browsing_context)
|
||||
{
|
||||
m_browsing_context = browsing_context;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue