mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
LibWeb: Make HTML::Timer GC-allocated
These are the timers used internally by setTimeout() and setInterval().
This commit is contained in:
@@ -118,6 +118,8 @@ void Window::visit_edges(JS::Cell::Visitor& visitor)
|
||||
visitor.visit(it.value);
|
||||
for (auto& it : m_constructors)
|
||||
visitor.visit(it.value);
|
||||
for (auto& it : m_timers)
|
||||
visitor.visit(it.value.ptr());
|
||||
}
|
||||
|
||||
Window::~Window() = default;
|
||||
|
||||
Reference in New Issue
Block a user