Class CSSFunctionRule
java.lang.Object
org.openqa.selenium.devtools.v148.css.model.CSSFunctionRule
CSS function at-rule representation.
-
Constructor Summary
ConstructorsConstructorDescriptionCSSFunctionRule(Value name, Optional<StyleSheetId> styleSheetId, StyleSheetOrigin origin, List<CSSFunctionParameter> parameters, List<CSSFunctionNode> children, Optional<BackendNodeId> originTreeScopeNodeId) -
Method Summary
Modifier and TypeMethodDescriptionFunction body.getName()Name of the function.Parent stylesheet's origin.The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.List of parameters.The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
-
Constructor Details
-
CSSFunctionRule
public CSSFunctionRule(Value name, Optional<StyleSheetId> styleSheetId, StyleSheetOrigin origin, List<CSSFunctionParameter> parameters, List<CSSFunctionNode> children, Optional<BackendNodeId> originTreeScopeNodeId)
-
-
Method Details
-
getName
Name of the function. -
getStyleSheetId
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from. -
getOrigin
Parent stylesheet's origin. -
getParameters
List of parameters. -
getChildren
Function body. -
getOriginTreeScopeNodeId
The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.
-