1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

LibWeb: Add Animatable interface to Element

This commit is contained in:
Matthew Olsson 2024-02-03 12:10:21 -07:00 committed by Andreas Kling
parent bb527c4351
commit dd1fd5fe47
2 changed files with 6 additions and 1 deletions

View file

@ -7,6 +7,7 @@
#pragma once
#include <LibWeb/ARIA/ARIAMixin.h>
#include <LibWeb/Animations/Animatable.h>
#include <LibWeb/Bindings/ElementPrototype.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Bindings/ShadowRootPrototype.h>
@ -67,7 +68,8 @@ class Element
, public ChildNode<Element>
, public NonDocumentTypeChildNode<Element>
, public SlottableMixin
, public ARIA::ARIAMixin {
, public ARIA::ARIAMixin
, public Animations::Animatable {
WEB_PLATFORM_OBJECT(Element, ParentNode);
public: