Class InheritedStyleEntry
- java.lang.Object
-
- org.openqa.selenium.devtools.v103.css.model.InheritedStyleEntry
-
public class InheritedStyleEntry extends java.lang.Object
Inherited CSS rule collection from ancestor node.
-
-
Constructor Summary
Constructors Constructor Description InheritedStyleEntry(java.util.Optional<CSSStyle> inlineStyle, java.util.List<RuleMatch> matchedCSSRules)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<CSSStyle>
getInlineStyle()
The ancestor node's inline style, if any, in the style inheritance chain.java.util.List<RuleMatch>
getMatchedCSSRules()
Matches of CSS rules matching the ancestor node in the style inheritance chain.
-
-
-
Method Detail
-
getInlineStyle
public java.util.Optional<CSSStyle> getInlineStyle()
The ancestor node's inline style, if any, in the style inheritance chain.
-
getMatchedCSSRules
public java.util.List<RuleMatch> getMatchedCSSRules()
Matches of CSS rules matching the ancestor node in the style inheritance chain.
-
-