mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.9 KiB
1.9 KiB
Home > puppeteer > Protocol > CSS > GetMatchedStylesForNodeResponse
Protocol.CSS.GetMatchedStylesForNodeResponse interface
Signature:
export interface GetMatchedStylesForNodeResponse
Properties
Property | Type | Description |
---|---|---|
attributesStyle | CSSStyle | Attribute-defined element style (e.g. resulting from "width=20 height=100%"). |
cssKeyframesRules | CSSKeyframesRule[] | A list of CSS keyframed animations matching this node. |
inherited | InheritedStyleEntry[] | A chain of inherited styles (from the immediate node parent up to the DOM tree root). |
inlineStyle | CSSStyle | Inline style for the specified DOM node. |
matchedCSSRules | RuleMatch[] | CSS rules matching this node, from all applicable stylesheets. |
pseudoElements | PseudoElementMatches[] | Pseudo style matches for this node. |