Class CSSKeyframeRule
- java.lang.Object
-
- org.openqa.selenium.devtools.v109.css.model.CSSKeyframeRule
-
public class CSSKeyframeRule extends java.lang.Object
CSS keyframe rule representation.
-
-
Constructor Summary
Constructors Constructor Description CSSKeyframeRule(java.util.Optional<StyleSheetId> styleSheetId, StyleSheetOrigin origin, Value keyText, CSSStyle style)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Value
getKeyText()
Associated key text.StyleSheetOrigin
getOrigin()
Parent stylesheet's origin.CSSStyle
getStyle()
Associated style declaration.java.util.Optional<StyleSheetId>
getStyleSheetId()
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
-
-
-
Constructor Detail
-
CSSKeyframeRule
public CSSKeyframeRule(java.util.Optional<StyleSheetId> styleSheetId, StyleSheetOrigin origin, Value keyText, CSSStyle style)
-
-
Method Detail
-
getStyleSheetId
public java.util.Optional<StyleSheetId> getStyleSheetId()
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
-
getOrigin
public StyleSheetOrigin getOrigin()
Parent stylesheet's origin.
-
getKeyText
public Value getKeyText()
Associated key text.
-
getStyle
public CSSStyle getStyle()
Associated style declaration.
-
-