mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
LibWeb: Add missing edge visit for TextTrack in HTMLTrackElement
This commit is contained in:
committed by
Andreas Kling
parent
b7e505365c
commit
0a3082ef05
@@ -29,6 +29,12 @@ void HTMLTrackElement::initialize(JS::Realm& realm)
|
||||
WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLTrackElement);
|
||||
}
|
||||
|
||||
void HTMLTrackElement::visit_edges(Cell::Visitor& visitor)
|
||||
{
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_track);
|
||||
}
|
||||
|
||||
void HTMLTrackElement::attribute_changed(FlyString const& name, Optional<String> const& value)
|
||||
{
|
||||
HTMLElement::attribute_changed(name, value);
|
||||
|
||||
Reference in New Issue
Block a user