1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:07:45 +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

@ -1,3 +1,4 @@
#import <Animations/Animatable.idl>
#import <ARIA/ARIAMixin.idl>
#import <DOM/Attr.idl>
#import <DOM/ChildNode.idl>
@ -105,3 +106,5 @@ Element includes InnerHTML;
// https://www.w3.org/TR/wai-aria-1.2/#idl_element
Element includes ARIAMixin;
Element includes Slottable;
// https://www.w3.org/TR/web-animations-1/#extensions-to-the-element-interface
Element includes Animatable;