Class CSSKeyframeRule
- java.lang.Object
-
- org.openqa.selenium.devtools.css.model.CSSKeyframeRule
-
public class CSSKeyframeRule extends java.lang.ObjectCSS 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 ValuegetKeyText()Associated key text.StyleSheetOrigingetOrigin()Parent stylesheet's origin.CSSStylegetStyle()Associated style declaration.StyleSheetIdgetStyleSheetId()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.
-
-