mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00: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
@@ -34,6 +34,12 @@ void HTMLAnchorElement::initialize(JS::Realm& realm)
|
||||
WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLAnchorElement);
|
||||
}
|
||||
|
||||
void HTMLAnchorElement::visit_edges(Cell::Visitor& visitor)
|
||||
{
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_rel_list);
|
||||
}
|
||||
|
||||
void HTMLAnchorElement::attribute_changed(FlyString const& name, Optional<String> const& value)
|
||||
{
|
||||
HTMLElement::attribute_changed(name, value);
|
||||
|
||||
Reference in New Issue
Block a user