mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:57:34 +00:00
LibWeb: Generate JavaScript bindings for CSSKeyframesRule
This one also needs a bit of work, but it's a nice start.
This commit is contained in:
parent
e3612708c7
commit
5ef01e562a
3 changed files with 15 additions and 4 deletions
|
@ -3,11 +3,15 @@
|
|||
[Exposed=Window]
|
||||
interface CSSKeyframesRule : CSSRule {
|
||||
attribute CSSOMString name;
|
||||
readonly attribute CSSRuleList cssRules;
|
||||
readonly attribute unsigned long length;
|
||||
|
||||
// FIXME: Implement this
|
||||
// readonly attribute CSSRuleList cssRules;
|
||||
|
||||
getter CSSKeyframeRule (unsigned long index);
|
||||
undefined appendRule(CSSOMString rule);
|
||||
undefined deleteRule(CSSOMString select);
|
||||
CSSKeyframeRule? findRule(CSSOMString select);
|
||||
|
||||
// FIXME: Implement these
|
||||
// undefined appendRule(CSSOMString rule);
|
||||
// undefined deleteRule(CSSOMString select);
|
||||
// CSSKeyframeRule? findRule(CSSOMString select);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue