devtools-protocol 0.0.977469 → 0.0.979353
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.
- package/json/browser_protocol.json +25 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +9 -0
- package/types/protocol.d.ts +15 -1
@@ -1610,6 +1610,7 @@
|
|
1610
1610
|
"ClientMetadataNoResponse",
|
1611
1611
|
"ClientMetadataInvalidResponse",
|
1612
1612
|
"ClientMetadataMissingPrivacyPolicyUrl",
|
1613
|
+
"DisabledInSettings",
|
1613
1614
|
"ErrorFetchingSignin",
|
1614
1615
|
"InvalidSigninResponse",
|
1615
1616
|
"AccountsHttpNotFound",
|
@@ -2672,6 +2673,21 @@
|
|
2672
2673
|
}
|
2673
2674
|
]
|
2674
2675
|
},
|
2676
|
+
{
|
2677
|
+
"id": "InheritedPseudoElementMatches",
|
2678
|
+
"description": "Inherited pseudo element matches from pseudos of an ancestor node.",
|
2679
|
+
"type": "object",
|
2680
|
+
"properties": [
|
2681
|
+
{
|
2682
|
+
"name": "pseudoElements",
|
2683
|
+
"description": "Matches of pseudo styles from the pseudos of an ancestor node.",
|
2684
|
+
"type": "array",
|
2685
|
+
"items": {
|
2686
|
+
"$ref": "PseudoElementMatches"
|
2687
|
+
}
|
2688
|
+
}
|
2689
|
+
]
|
2690
|
+
},
|
2675
2691
|
{
|
2676
2692
|
"id": "RuleMatch",
|
2677
2693
|
"description": "Match data for a CSS rule.",
|
@@ -3691,6 +3707,15 @@
|
|
3691
3707
|
"$ref": "InheritedStyleEntry"
|
3692
3708
|
}
|
3693
3709
|
},
|
3710
|
+
{
|
3711
|
+
"name": "inheritedPseudoElements",
|
3712
|
+
"description": "A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).",
|
3713
|
+
"optional": true,
|
3714
|
+
"type": "array",
|
3715
|
+
"items": {
|
3716
|
+
"$ref": "InheritedPseudoElementMatches"
|
3717
|
+
}
|
3718
|
+
},
|
3694
3719
|
{
|
3695
3720
|
"name": "cssKeyframesRules",
|
3696
3721
|
"description": "A list of CSS keyframed animations matching this node.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -792,6 +792,7 @@ experimental domain Audits
|
|
792
792
|
ClientMetadataNoResponse
|
793
793
|
ClientMetadataInvalidResponse
|
794
794
|
ClientMetadataMissingPrivacyPolicyUrl
|
795
|
+
DisabledInSettings
|
795
796
|
ErrorFetchingSignin
|
796
797
|
InvalidSigninResponse
|
797
798
|
AccountsHttpNotFound
|
@@ -1300,6 +1301,12 @@ experimental domain CSS
|
|
1300
1301
|
# Matches of CSS rules matching the ancestor node in the style inheritance chain.
|
1301
1302
|
array of RuleMatch matchedCSSRules
|
1302
1303
|
|
1304
|
+
# Inherited pseudo element matches from pseudos of an ancestor node.
|
1305
|
+
type InheritedPseudoElementMatches extends object
|
1306
|
+
properties
|
1307
|
+
# Matches of pseudo styles from the pseudos of an ancestor node.
|
1308
|
+
array of PseudoElementMatches pseudoElements
|
1309
|
+
|
1303
1310
|
# Match data for a CSS rule.
|
1304
1311
|
type RuleMatch extends object
|
1305
1312
|
properties
|
@@ -1738,6 +1745,8 @@ experimental domain CSS
|
|
1738
1745
|
optional array of PseudoElementMatches pseudoElements
|
1739
1746
|
# A chain of inherited styles (from the immediate node parent up to the DOM tree root).
|
1740
1747
|
optional array of InheritedStyleEntry inherited
|
1748
|
+
# A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).
|
1749
|
+
optional array of InheritedPseudoElementMatches inheritedPseudoElements
|
1741
1750
|
# A list of CSS keyframed animations matching this node.
|
1742
1751
|
optional array of CSSKeyframesRule cssKeyframesRules
|
1743
1752
|
|
package/types/protocol.d.ts
CHANGED
@@ -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' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled');
|
3341
|
+
export type FederatedAuthRequestIssueReason = ('ApprovalDeclined' | 'TooManyRequests' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataMissingPrivacyPolicyUrl' | 'DisabledInSettings' | '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
|
*/
|