mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
LibJS+LibWeb: Make HTML::Script GC-allocated
This allows the garbage collector to keep HTML::Script objects alive and fixes a bug where a HTMLScriptElement could get GC'd while its code was executing.
This commit is contained in:
@@ -30,6 +30,7 @@ HTMLScriptElement::~HTMLScriptElement() = default;
|
||||
void HTMLScriptElement::visit_edges(Cell::Visitor& visitor)
|
||||
{
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_script);
|
||||
visitor.visit(m_parser_document.ptr());
|
||||
visitor.visit(m_preparation_time_document.ptr());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user