chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.css / GetMatchedStylesForNodeResponse

GetMatchedStylesForNodeResponse

data class GetMatchedStylesForNodeResponse

Response type for the CSSDomain.getMatchedStylesForNode command.

Constructors

<init>

Response type for the CSSDomain.getMatchedStylesForNode command.

GetMatchedStylesForNodeResponse(inlineStyle: CSSStyle? = null, attributesStyle: CSSStyle? = null, matchedCSSRules: List<RuleMatch>? = null, pseudoElements: List<PseudoElementMatches>? = null, inherited: List<InheritedStyleEntry>? = null, cssKeyframesRules: List<CSSKeyframesRule>? = null)

Properties

attributesStyle

Attribute-defined element style (e.g. resulting from "width=20 height=100%").

val attributesStyle: CSSStyle?

cssKeyframesRules

A list of CSS keyframed animations matching this node.

val cssKeyframesRules: List<CSSKeyframesRule>?

inherited

A chain of inherited styles (from the immediate node parent up to the DOM tree root).

val inherited: List<InheritedStyleEntry>?

inlineStyle

Inline style for the specified DOM node.

val inlineStyle: CSSStyle?

matchedCSSRules

CSS rules matching this node, from all applicable stylesheets.

val matchedCSSRules: List<RuleMatch>?

pseudoElements

Pseudo style matches for this node.

val pseudoElements: List<PseudoElementMatches>?