pl.wendigo.chrome.domain.css / GetInlineStylesForNodeResponse

GetInlineStylesForNodeResponse

data class GetInlineStylesForNodeResponse (source)

Represents response frame for CSS.getInlineStylesForNode method call.

Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM attributes) for a DOM node identified by nodeId.

Constructors

<init>

GetInlineStylesForNodeResponse(inlineStyle: CSSStyle? = null, attributesStyle: CSSStyle? = null)

Represents response frame for CSS.getInlineStylesForNode method call.

Properties

attributesStyle

val attributesStyle: CSSStyle?

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

inlineStyle

val inlineStyle: CSSStyle?

Inline style for the specified DOM node.