LibWeb: Delete unused m_animation_driver_timer in Document

This commit is contained in:
Aliaksandr Kalenik 2025-07-16 21:56:10 +02:00 committed by Jelle Raaijmakers
parent 0e6ee925f0
commit 9a5ef95022
2 changed files with 0 additions and 4 deletions

View File

@ -4445,9 +4445,6 @@ void Document::did_stop_being_active_document_in_navigable()
notify_each_document_observer([&](auto const& document_observer) {
return document_observer.document_became_inactive();
});
if (m_animation_driver_timer)
m_animation_driver_timer->stop();
}
void Document::increment_throw_on_dynamic_markup_insertion_counter(Badge<HTML::HTMLParser>)

View File

@ -1170,7 +1170,6 @@ private:
// https://www.w3.org/TR/web-animations-1/#pending-animation-event-queue
Vector<PendingAnimationEvent> m_pending_animation_event_queue;
RefPtr<Core::Timer> m_animation_driver_timer;
// https://drafts.csswg.org/css-transitions-2/#current-transition-generation
size_t m_transition_generation { 0 };