devtools-protocol 0.0.975498 → 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.
@@ -999,7 +999,8 @@
999
999
  "WarnSameSiteStrictCrossDowngradeStrict",
1000
1000
  "WarnSameSiteStrictCrossDowngradeLax",
1001
1001
  "WarnSameSiteLaxCrossDowngradeStrict",
1002
- "WarnSameSiteLaxCrossDowngradeLax"
1002
+ "WarnSameSiteLaxCrossDowngradeLax",
1003
+ "WarnAttributeValueExceedsMaxSize"
1003
1004
  ]
1004
1005
  },
1005
1006
  {
@@ -1608,6 +1609,7 @@
1608
1609
  "ClientMetadataHttpNotFound",
1609
1610
  "ClientMetadataNoResponse",
1610
1611
  "ClientMetadataInvalidResponse",
1612
+ "ClientMetadataMissingPrivacyPolicyUrl",
1611
1613
  "ErrorFetchingSignin",
1612
1614
  "InvalidSigninResponse",
1613
1615
  "AccountsHttpNotFound",
@@ -2670,6 +2672,21 @@
2670
2672
  }
2671
2673
  ]
2672
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
+ },
2673
2690
  {
2674
2691
  "id": "RuleMatch",
2675
2692
  "description": "Match data for a CSS rule.",
@@ -3689,6 +3706,15 @@
3689
3706
  "$ref": "InheritedStyleEntry"
3690
3707
  }
3691
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
+ },
3692
3718
  {
3693
3719
  "name": "cssKeyframesRules",
3694
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.975498",
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",
@@ -490,6 +490,7 @@ experimental domain Audits
490
490
  WarnSameSiteStrictCrossDowngradeLax
491
491
  WarnSameSiteLaxCrossDowngradeStrict
492
492
  WarnSameSiteLaxCrossDowngradeLax
493
+ WarnAttributeValueExceedsMaxSize
493
494
 
494
495
  type CookieOperation extends string
495
496
  enum
@@ -790,6 +791,7 @@ experimental domain Audits
790
791
  ClientMetadataHttpNotFound
791
792
  ClientMetadataNoResponse
792
793
  ClientMetadataInvalidResponse
794
+ ClientMetadataMissingPrivacyPolicyUrl
793
795
  ErrorFetchingSignin
794
796
  InvalidSigninResponse
795
797
  AccountsHttpNotFound
@@ -1298,6 +1300,12 @@ experimental domain CSS
1298
1300
  # Matches of CSS rules matching the ancestor node in the style inheritance chain.
1299
1301
  array of RuleMatch matchedCSSRules
1300
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
+
1301
1309
  # Match data for a CSS rule.
1302
1310
  type RuleMatch extends object
1303
1311
  properties
@@ -1736,6 +1744,8 @@ experimental domain CSS
1736
1744
  optional array of PseudoElementMatches pseudoElements
1737
1745
  # A chain of inherited styles (from the immediate node parent up to the DOM tree root).
1738
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
1739
1749
  # A list of CSS keyframed animations matching this node.
1740
1750
  optional array of CSSKeyframesRule cssKeyframesRules
1741
1751
 
@@ -3073,7 +3073,7 @@ export namespace Protocol {
3073
3073
 
3074
3074
  export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext');
3075
3075
 
3076
- export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax');
3076
+ export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize');
3077
3077
 
3078
3078
  export type CookieOperation = ('SetCookie' | 'ReadCookie');
3079
3079
 
@@ -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
  */