mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 00:23:20 +00:00
14 lines
414 B
Text
14 lines
414 B
Text
![]() |
#import <CSS/CSSRule.idl>
|
||
|
|
||
|
[Exposed=Window]
|
||
|
interface CSSKeyframesRule : CSSRule {
|
||
|
attribute CSSOMString name;
|
||
|
readonly attribute CSSRuleList cssRules;
|
||
|
readonly attribute unsigned long length;
|
||
|
|
||
|
getter CSSKeyframeRule (unsigned long index);
|
||
|
undefined appendRule(CSSOMString rule);
|
||
|
undefined deleteRule(CSSOMString select);
|
||
|
CSSKeyframeRule? findRule(CSSOMString select);
|
||
|
};
|