From 13cba5ecb4380bf9355c39739e9318d577759a59 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Tue, 26 Aug 2025 14:23:08 +0200 Subject: [PATCH] LibWeb: Make KeyframeEffect final --- Libraries/LibWeb/Animations/KeyframeEffect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/Animations/KeyframeEffect.h b/Libraries/LibWeb/Animations/KeyframeEffect.h index f00b8822c57..19dd4f8d8d5 100644 --- a/Libraries/LibWeb/Animations/KeyframeEffect.h +++ b/Libraries/LibWeb/Animations/KeyframeEffect.h @@ -54,7 +54,7 @@ struct BaseKeyframe { }; // https://www.w3.org/TR/web-animations-1/#the-keyframeeffect-interface -class KeyframeEffect : public AnimationEffect { +class KeyframeEffect final : public AnimationEffect { WEB_PLATFORM_OBJECT(KeyframeEffect, AnimationEffect); GC_DECLARE_ALLOCATOR(KeyframeEffect);