mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
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.
7 lines
204 B
Text
7 lines
204 B
Text
#import <CSS/CSSRule.idl>
|
|
|
|
[Exposed=Window]
|
|
interface CSSKeyframeRule : CSSRule {
|
|
attribute CSSOMString keyText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
};
|