mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-02 14:19:15 +00:00
LibWeb: Incorrectly skip visiting MessagePort::m_worker_event_target
This is a stopgap hack to prevent CI from hanging until we figure out what's going on. Bug: https://github.com/SerenityOS/serenity/issues/23899
This commit is contained in:
parent
7d43685927
commit
2317a8a4eb
Notes:
sideshowbarker
2024-07-17 17:49:11 +09:00
Author: https://github.com/awesomekling
Commit: 2317a8a4eb
1 changed files with 4 additions and 0 deletions
|
@ -52,6 +52,10 @@ void MessagePort::visit_edges(Cell::Visitor& visitor)
|
||||||
{
|
{
|
||||||
Base::visit_edges(visitor);
|
Base::visit_edges(visitor);
|
||||||
visitor.visit(m_remote_port);
|
visitor.visit(m_remote_port);
|
||||||
|
|
||||||
|
// FIXME: This is incorrect!! We *should* be visiting the worker event target,
|
||||||
|
// but CI hangs if we do: https://github.com/SerenityOS/serenity/issues/23899
|
||||||
|
visitor.ignore(m_worker_event_target);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MessagePort::set_worker_event_target(JS::NonnullGCPtr<DOM::EventTarget> target)
|
void MessagePort::set_worker_event_target(JS::NonnullGCPtr<DOM::EventTarget> target)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue