css-mixins.idl (837B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: CSS Custom Functions and Mixins Module Level 1 (https://drafts.csswg.org/css-mixins-1/) 5 6 [Exposed=Window] 7 interface CSSFunctionRule : CSSGroupingRule { 8 readonly attribute CSSOMString name; 9 sequence<FunctionParameter> getParameters(); 10 readonly attribute CSSOMString returnType; 11 }; 12 13 dictionary FunctionParameter { 14 required CSSOMString name; 15 required CSSOMString type; 16 CSSOMString? defaultValue; 17 }; 18 19 [Exposed=Window] 20 interface CSSFunctionDescriptors : CSSStyleDeclaration { 21 attribute [LegacyNullToEmptyString] CSSOMString result; 22 }; 23 24 [Exposed=Window] 25 interface CSSFunctionDeclarations : CSSRule { 26 [SameObject, PutForwards=cssText] readonly attribute CSSFunctionDescriptors style; 27 };