chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.css.events / CSSEvent

CSSEvent

sealed class CSSEvent

Types

FontsUpdatedEvent

Fires whenever a web font is updated. A non-empty font parameter indicates a successfully loaded web font

data class FontsUpdatedEvent : CSSEvent

MediaQueryResultChangedEvent

Fires whenever a MediaQuery result changes (for example, after a browser window has been resized.) The current implementation considers only viewport-dependent media features.

object MediaQueryResultChangedEvent : CSSEvent

StyleSheetAddedEvent

Fired whenever an active document stylesheet is added.

data class StyleSheetAddedEvent : CSSEvent

StyleSheetChangedEvent

Fired whenever a stylesheet is changed as a result of the client operation.

data class StyleSheetChangedEvent : CSSEvent

StyleSheetRemovedEvent

Fired whenever an active document stylesheet is removed.

data class StyleSheetRemovedEvent : CSSEvent