
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
17 lines
481 B
Text
17 lines
481 B
Text
#import <CSS/CSSRule.idl>
|
|
|
|
[Exposed=Window]
|
|
interface CSSKeyframesRule : CSSRule {
|
|
attribute CSSOMString name;
|
|
readonly attribute unsigned long length;
|
|
|
|
// FIXME: Implement this
|
|
// readonly attribute CSSRuleList cssRules;
|
|
|
|
getter CSSKeyframeRule (unsigned long index);
|
|
|
|
// FIXME: Implement these
|
|
// undefined appendRule(CSSOMString rule);
|
|
// undefined deleteRule(CSSOMString select);
|
|
// CSSKeyframeRule? findRule(CSSOMString select);
|
|
};
|