Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.CSS.GetMatchedStylesForNodeResponse

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.CSS.GetMatchedStylesForNodeResponse
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { GetMatchedStylesForNodeResponse } = Protocol.CSS;

Properties

optional
inlineStyle: CSSStyle

Inline style for the specified DOM node.

optional
attributesStyle: CSSStyle

Attribute-defined element style (e.g. resulting from "width=20 height=100%").

optional
matchedCSSRules: RuleMatch[]

CSS rules matching this node, from all applicable stylesheets.

optional
pseudoElements: PseudoElementMatches[]

Pseudo style matches for this node.

optional
inherited: InheritedStyleEntry[]

A chain of inherited styles (from the immediate node parent up to the DOM tree root).

optional
inheritedPseudoElements: InheritedPseudoElementMatches[]

A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).

optional
cssKeyframesRules: CSSKeyframesRule[]

A list of CSS keyframed animations matching this node.

optional
parentLayoutNodeId: DOM.NodeId

Id of the first parent element that does not have display: contents.