devtools-protocol 0.0.975963 → 0.0.977936

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.
@@ -1609,6 +1609,7 @@
1609
1609
  "ClientMetadataHttpNotFound",
1610
1610
  "ClientMetadataNoResponse",
1611
1611
  "ClientMetadataInvalidResponse",
1612
+ "ClientMetadataMissingPrivacyPolicyUrl",
1612
1613
  "ErrorFetchingSignin",
1613
1614
  "InvalidSigninResponse",
1614
1615
  "AccountsHttpNotFound",
@@ -2671,6 +2672,21 @@
2671
2672
  }
2672
2673
  ]
2673
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
+ },
2674
2690
  {
2675
2691
  "id": "RuleMatch",
2676
2692
  "description": "Match data for a CSS rule.",
@@ -3690,6 +3706,15 @@
3690
3706
  "$ref": "InheritedStyleEntry"
3691
3707
  }
3692
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
+ },
3693
3718
  {
3694
3719
  "name": "cssKeyframesRules",
3695
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.975963",
3
+ "version": "0.0.977936",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -791,6 +791,7 @@ experimental domain Audits
791
791
  ClientMetadataHttpNotFound
792
792
  ClientMetadataNoResponse
793
793
  ClientMetadataInvalidResponse
794
+ ClientMetadataMissingPrivacyPolicyUrl
794
795
  ErrorFetchingSignin
795
796
  InvalidSigninResponse
796
797
  AccountsHttpNotFound
@@ -1299,6 +1300,12 @@ experimental domain CSS
1299
1300
  # Matches of CSS rules matching the ancestor node in the style inheritance chain.
1300
1301
  array of RuleMatch matchedCSSRules
1301
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
+
1302
1309
  # Match data for a CSS rule.
1303
1310
  type RuleMatch extends object
1304
1311
  properties
@@ -1737,6 +1744,8 @@ experimental domain CSS
1737
1744
  optional array of PseudoElementMatches pseudoElements
1738
1745
  # A chain of inherited styles (from the immediate node parent up to the DOM tree root).
1739
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
1740
1749
  # A list of CSS keyframed animations matching this node.
1741
1750
  optional array of CSSKeyframesRule cssKeyframesRules
1742
1751
 
@@ -3338,7 +3338,7 @@ export namespace Protocol {
3338
3338
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3339
3339
  * all cases except for success.
3340
3340
  */
3341
- export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
3341
+ export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
3342
3342
 
3343
3343
  /**
3344
3344
  * This issue tracks client hints related issues. It's used to deprecate old
@@ -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
  */