LibWeb: Fix some GCVerifier warnings

This commit is contained in:
Matthew Olsson
2024-04-05 13:47:48 -07:00
committed by Andreas Kling
parent 8b8ada292e
commit 8450041b52
23 changed files with 63 additions and 59 deletions

View File

@@ -142,7 +142,7 @@ private:
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#planned-navigation
// Each form element has a planned navigation, which is either null or a task; when the form is first created,
// its planned navigation must be set to null.
Task const* m_planned_navigation { nullptr };
JS::GCPtr<Task const> m_planned_navigation;
};
}