Class VarCssFunction<T>

java.lang.Object
org.jhotdraw8.css.function.AbstractCssFunction<T>
org.jhotdraw8.css.function.VarCssFunction<T>
Type Parameters:
T - the element type of the DOM
All Implemented Interfaces:
CssFunction<T>

public class VarCssFunction<T> extends AbstractCssFunction<T>
Processes the var() function.
     var = "var(" ,  s* , custom-property-name, s* , [ "," ,  s* , declaration-value ] ,  s* , ")" ;
     custom-property-name = ident-token;
     declaration-value = fallback-value;
 
The custom-property-name must start with two dashes "--".

References:

CSS Custom Properties for Cascading Variables Module Level 2. Paragraph 3. Using Cascading Variables: the var() notation
csswg.org