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

LibWeb: Generate JavaScript bindings for CSSKeyframeRule

We still need to do a bit of work. For example: `set_key_text` isn't
implemented due to its requirements being quite complex, but it's
a start.
This commit is contained in:
Caoimhe 2023-06-20 16:19:40 +01:00 committed by Andreas Kling
parent f02ccffaa8
commit e3612708c7
3 changed files with 12 additions and 1 deletions

View file

@ -1,6 +1,6 @@
#import <CSS/CSSRule.idl>
[Exposed = Window]
[Exposed=Window]
interface CSSKeyframeRule : CSSRule {
attribute CSSOMString keyText;
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;