import { type default } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.d.ts";
const { CSSStyleSheetHeader } = default.CSS;
CSS stylesheet metainformation.
Properties
The stylesheet identifier.
Owner frame identifier.
Stylesheet resource URL. Empty if this is a constructed stylesheet created using new CSSStyleSheet() (but non-empty if this is a constructed sylesheet imported as a CSS module script).
Stylesheet origin.
The 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.
True if this stylesheet is created through new CSSStyleSheet() or imported as a CSS module script.