pl.wendigo.chrome.api.css / CSSStyleSheetHeader

CSSStyleSheetHeader

data class CSSStyleSheetHeader (source)

CSS stylesheet metainformation.

Link
CSS#CSSStyleSheetHeader type documentation.

Constructors

<init>

CSSStyleSheetHeader(styleSheetId: StyleSheetId, frameId: FrameId, sourceURL: String, sourceMapURL: String? = null, origin: StyleSheetOrigin, title: String, ownerNode: BackendNodeId? = null, disabled: Boolean, hasSourceURL: Boolean? = null, isInline: Boolean, startLine: Double, startColumn: Double, length: Double)

CSS stylesheet metainformation.

Properties

disabled

val disabled: Boolean

Denotes whether the stylesheet is disabled.

frameId

val frameId: FrameId

Owner frame identifier.

hasSourceURL

val hasSourceURL: Boolean?

Whether the sourceURL field value comes from the sourceURL comment.

isInline

val isInline: Boolean

Whether this stylesheet is created for STYLE tag by parser. This flag is not set for document.written STYLE tags.

length

val length: Double

Size of the content (in characters).

origin

val origin: StyleSheetOrigin

Stylesheet origin.

ownerNode

val ownerNode: BackendNodeId?

The backend id for the owner node of the stylesheet.

sourceMapURL

val sourceMapURL: String?

URL of source map associated with the stylesheet (if any).

sourceURL

val sourceURL: String

Stylesheet resource URL.

startColumn

val startColumn: Double

Column offset of the stylesheet within the resource (zero based).

startLine

val startLine: Double

Line offset of the stylesheet within the resource (zero based).

styleSheetId

val styleSheetId: StyleSheetId

The stylesheet identifier.

title

val title: String

Stylesheet title.