devtools-protocol 0.0.977469 → 0.0.977795

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2672,6 +2672,21 @@
2672
2672
  }
2673
2673
  ]
2674
2674
  },
2675
+ {
2676
+ "id": "InheritedPseudoElementMatches",
2677
+ "description": "Inherited pseudo element matches from pseudos of an ancestor node.",
2678
+ "type": "object",
2679
+ "properties": [
2680
+ {
2681
+ "name": "pseudoElements",
2682
+ "description": "Matches of pseudo styles from the pseudos of an ancestor node.",
2683
+ "type": "array",
2684
+ "items": {
2685
+ "$ref": "PseudoElementMatches"
2686
+ }
2687
+ }
2688
+ ]
2689
+ },
2675
2690
  {
2676
2691
  "id": "RuleMatch",
2677
2692
  "description": "Match data for a CSS rule.",
@@ -3691,6 +3706,15 @@
3691
3706
  "$ref": "InheritedStyleEntry"
3692
3707
  }
3693
3708
  },
3709
+ {
3710
+ "name": "inheritedPseudoElements",
3711
+ "description": "A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).",
3712
+ "optional": true,
3713
+ "type": "array",
3714
+ "items": {
3715
+ "$ref": "InheritedPseudoElementMatches"
3716
+ }
3717
+ },
3694
3718
  {
3695
3719
  "name": "cssKeyframesRules",
3696
3720
  "description": "A list of CSS keyframed animations matching this node.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.977469",
3
+ "version": "0.0.977795",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1300,6 +1300,12 @@ experimental domain CSS
1300
1300
  # Matches of CSS rules matching the ancestor node in the style inheritance chain.
1301
1301
  array of RuleMatch matchedCSSRules
1302
1302
 
1303
+ # Inherited pseudo element matches from pseudos of an ancestor node.
1304
+ type InheritedPseudoElementMatches extends object
1305
+ properties
1306
+ # Matches of pseudo styles from the pseudos of an ancestor node.
1307
+ array of PseudoElementMatches pseudoElements
1308
+
1303
1309
  # Match data for a CSS rule.
1304
1310
  type RuleMatch extends object
1305
1311
  properties
@@ -1738,6 +1744,8 @@ experimental domain CSS
1738
1744
  optional array of PseudoElementMatches pseudoElements
1739
1745
  # A chain of inherited styles (from the immediate node parent up to the DOM tree root).
1740
1746
  optional array of InheritedStyleEntry inherited
1747
+ # A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).
1748
+ optional array of InheritedPseudoElementMatches inheritedPseudoElements
1741
1749
  # A list of CSS keyframed animations matching this node.
1742
1750
  optional array of CSSKeyframesRule cssKeyframesRules
1743
1751
 
@@ -3956,6 +3956,16 @@ export namespace Protocol {
3956
3956
  matchedCSSRules: RuleMatch[];
3957
3957
  }
3958
3958
 
3959
+ /**
3960
+ * Inherited pseudo element matches from pseudos of an ancestor node.
3961
+ */
3962
+ export interface InheritedPseudoElementMatches {
3963
+ /**
3964
+ * Matches of pseudo styles from the pseudos of an ancestor node.
3965
+ */
3966
+ pseudoElements: PseudoElementMatches[];
3967
+ }
3968
+
3959
3969
  /**
3960
3970
  * Match data for a CSS rule.
3961
3971
  */
@@ -4697,6 +4707,10 @@ export namespace Protocol {
4697
4707
  * A chain of inherited styles (from the immediate node parent up to the DOM tree root).
4698
4708
  */
4699
4709
  inherited?: InheritedStyleEntry[];
4710
+ /**
4711
+ * A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).
4712
+ */
4713
+ inheritedPseudoElements?: InheritedPseudoElementMatches[];
4700
4714
  /**
4701
4715
  * A list of CSS keyframed animations matching this node.
4702
4716
  */