Class CSSKeyframeRule
- java.lang.Object
-
- org.openqa.selenium.devtools.css.model.CSSKeyframeRule
-
public class CSSKeyframeRule extends java.lang.Object
CSS keyframe rule representation.
-
-
Constructor Summary
Constructors Constructor Description CSSKeyframeRule(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.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(StyleSheetId styleSheetId, StyleSheetOrigin origin, Value keyText, CSSStyle style)
-
-
Method Detail
-
getStyleSheetId
public 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.
-
-