mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 19:22:53 +00:00
LibWeb: Add a missing visit in HTMLFormElement
This commit is contained in:
parent
a0802b6e29
commit
4701c4bb01
Notes:
sideshowbarker
2024-07-17 04:32:07 +09:00
Author: https://github.com/mattco98
Commit: 4701c4bb01
Pull-request: https://github.com/SerenityOS/serenity/pull/23861
Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 0 deletions
|
@ -61,6 +61,7 @@ void HTMLFormElement::visit_edges(Cell::Visitor& visitor)
|
|||
visitor.visit(m_elements);
|
||||
for (auto& element : m_associated_elements)
|
||||
visitor.visit(element);
|
||||
visitor.visit(m_planned_navigation);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#implicit-submission
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue