pl.wendigo.chrome.api.css / GetInlineStylesForNodeResponse

GetInlineStylesForNodeResponse

data class GetInlineStylesForNodeResponse (source)

Represents response frame that is returned from CSS#getInlineStylesForNode operation call. Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM attributes) for a DOM node identified by nodeId.

Link
CSS#getInlineStylesForNode method documentation.

See Also

CSSOperations.getInlineStylesForNode

Constructors

<init>

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

Represents response frame that is returned from CSS#getInlineStylesForNode operation call. Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM attributes) for a DOM node identified by nodeId.

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.