import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { CSSStyleSheetHeader } = Protocol.CSS;
CSS stylesheet metainformation.
Properties
styleSheetId: StyleSheetId
The stylesheet identifier.
frameId: Page.FrameId
Owner frame identifier.
origin: StyleSheetOrigin
Stylesheet origin.
optional
ownerNode: DOM.BackendNodeIdThe backend id for the owner node of the stylesheet.
Whether this stylesheet is created for STYLE tag by parser. This flag is not set for document.written STYLE tags.
Whether this stylesheet is mutable. Inline stylesheets become mutable after they have been modified via CSSOM API. element's stylesheets become mutable only if DevTools modifies them. Constructed stylesheets (new CSSStyleSheet()) are mutable immediately after creation.
Whether this stylesheet is a constructed stylesheet (created using new CSSStyleSheet()).