mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 19:47:17 +02:00
LibWeb: Add a few missing visits to m_rel_list members
This commit is contained in:
committed by
Andreas Kling
parent
3ccbc83168
commit
74aeb57631
Notes:
sideshowbarker
2024-07-17 06:24:08 +09:00
Author: https://github.com/mattco98 Commit: https://github.com/SerenityOS/serenity/commit/74aeb57631 Pull-request: https://github.com/SerenityOS/serenity/pull/24350 Reviewed-by: https://github.com/ADKaster ✅
@@ -27,6 +27,12 @@ void HTMLAreaElement::initialize(JS::Realm& realm)
|
||||
WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLAreaElement);
|
||||
}
|
||||
|
||||
void HTMLAreaElement::visit_edges(Cell::Visitor& visitor)
|
||||
{
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_rel_list);
|
||||
}
|
||||
|
||||
void HTMLAreaElement::attribute_changed(FlyString const& name, Optional<String> const& value)
|
||||
{
|
||||
HTMLElement::attribute_changed(name, value);
|
||||
|
||||
Reference in New Issue
Block a user