devtools-protocol 0.0.1491235 → 0.0.1495237
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 +44 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +21 -3
- package/types/protocol-mapping.d.ts +3 -3
- package/types/protocol-proxy-api.d.ts +352 -3
- package/types/protocol-tests-proxy-api.d.ts +394 -45
- package/types/protocol.d.ts +861 -92
@@ -1587,6 +1587,16 @@
|
|
1587
1587
|
"ValidationFailedIntegrityMismatch"
|
1588
1588
|
]
|
1589
1589
|
},
|
1590
|
+
{
|
1591
|
+
"id": "UnencodedDigestError",
|
1592
|
+
"type": "string",
|
1593
|
+
"enum": [
|
1594
|
+
"MalformedDictionary",
|
1595
|
+
"UnknownAlgorithm",
|
1596
|
+
"IncorrectDigestType",
|
1597
|
+
"IncorrectDigestLength"
|
1598
|
+
]
|
1599
|
+
},
|
1590
1600
|
{
|
1591
1601
|
"id": "AttributionReportingIssueDetails",
|
1592
1602
|
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
|
@@ -1696,6 +1706,20 @@
|
|
1696
1706
|
}
|
1697
1707
|
]
|
1698
1708
|
},
|
1709
|
+
{
|
1710
|
+
"id": "UnencodedDigestIssueDetails",
|
1711
|
+
"type": "object",
|
1712
|
+
"properties": [
|
1713
|
+
{
|
1714
|
+
"name": "error",
|
1715
|
+
"$ref": "UnencodedDigestError"
|
1716
|
+
},
|
1717
|
+
{
|
1718
|
+
"name": "request",
|
1719
|
+
"$ref": "AffectedRequest"
|
1720
|
+
}
|
1721
|
+
]
|
1722
|
+
},
|
1699
1723
|
{
|
1700
1724
|
"id": "GenericIssueErrorType",
|
1701
1725
|
"type": "string",
|
@@ -2114,6 +2138,7 @@
|
|
2114
2138
|
"SharedDictionaryIssue",
|
2115
2139
|
"ElementAccessibilityIssue",
|
2116
2140
|
"SRIMessageSignatureIssue",
|
2141
|
+
"UnencodedDigestIssue",
|
2117
2142
|
"UserReidentificationIssue"
|
2118
2143
|
]
|
2119
2144
|
},
|
@@ -2243,6 +2268,11 @@
|
|
2243
2268
|
"optional": true,
|
2244
2269
|
"$ref": "SRIMessageSignatureIssueDetails"
|
2245
2270
|
},
|
2271
|
+
{
|
2272
|
+
"name": "unencodedDigestIssueDetails",
|
2273
|
+
"optional": true,
|
2274
|
+
"$ref": "UnencodedDigestIssueDetails"
|
2275
|
+
},
|
2246
2276
|
{
|
2247
2277
|
"name": "userReidentificationIssueDetails",
|
2248
2278
|
"optional": true,
|
@@ -4364,6 +4394,12 @@
|
|
4364
4394
|
"description": "true if the query contains scroll-state() queries.",
|
4365
4395
|
"optional": true,
|
4366
4396
|
"type": "boolean"
|
4397
|
+
},
|
4398
|
+
{
|
4399
|
+
"name": "queriesAnchored",
|
4400
|
+
"description": "true if the query contains anchored() queries.",
|
4401
|
+
"optional": true,
|
4402
|
+
"type": "boolean"
|
4367
4403
|
}
|
4368
4404
|
]
|
4369
4405
|
},
|
@@ -7820,7 +7856,7 @@
|
|
7820
7856
|
},
|
7821
7857
|
{
|
7822
7858
|
"name": "getContainerForNode",
|
7823
|
-
"description": "Returns the query container of the given node based on container query\nconditions: containerName, physical and logical axes, and whether it queries\nscroll-state. If no axes are provided and
|
7859
|
+
"description": "Returns the query container of the given node based on container query\nconditions: containerName, physical and logical axes, and whether it queries\nscroll-state or anchored elements. If no axes are provided and\nqueriesScrollState is false, the style container is returned, which is the\ndirect parent or the closest element with a matching container-name.",
|
7824
7860
|
"experimental": true,
|
7825
7861
|
"parameters": [
|
7826
7862
|
{
|
@@ -7846,6 +7882,11 @@
|
|
7846
7882
|
"name": "queriesScrollState",
|
7847
7883
|
"optional": true,
|
7848
7884
|
"type": "boolean"
|
7885
|
+
},
|
7886
|
+
{
|
7887
|
+
"name": "queriesAnchored",
|
7888
|
+
"optional": true,
|
7889
|
+
"type": "boolean"
|
7849
7890
|
}
|
7850
7891
|
],
|
7851
7892
|
"returns": [
|
@@ -27970,7 +28011,8 @@
|
|
27970
28011
|
"OtherPrerenderedPageActivated",
|
27971
28012
|
"V8OptimizerDisabled",
|
27972
28013
|
"PrerenderFailedDuringPrefetch",
|
27973
|
-
"BrowsingDataRemoved"
|
28014
|
+
"BrowsingDataRemoved",
|
28015
|
+
"PrerenderHostReused"
|
27974
28016
|
]
|
27975
28017
|
},
|
27976
28018
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -825,6 +825,13 @@ experimental domain Audits
|
|
825
825
|
ValidationFailedSignatureMismatch
|
826
826
|
ValidationFailedIntegrityMismatch
|
827
827
|
|
828
|
+
type UnencodedDigestError extends string
|
829
|
+
enum
|
830
|
+
MalformedDictionary
|
831
|
+
UnknownAlgorithm
|
832
|
+
IncorrectDigestType
|
833
|
+
IncorrectDigestLength
|
834
|
+
|
828
835
|
# Details for issues around "Attribution Reporting API" usage.
|
829
836
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
830
837
|
type AttributionReportingIssueDetails extends object
|
@@ -863,6 +870,11 @@ experimental domain Audits
|
|
863
870
|
array of string integrityAssertions
|
864
871
|
AffectedRequest request
|
865
872
|
|
873
|
+
type UnencodedDigestIssueDetails extends object
|
874
|
+
properties
|
875
|
+
UnencodedDigestError error
|
876
|
+
AffectedRequest request
|
877
|
+
|
866
878
|
type GenericIssueErrorType extends string
|
867
879
|
enum
|
868
880
|
FormLabelForNameError
|
@@ -1123,6 +1135,7 @@ experimental domain Audits
|
|
1123
1135
|
SharedDictionaryIssue
|
1124
1136
|
ElementAccessibilityIssue
|
1125
1137
|
SRIMessageSignatureIssue
|
1138
|
+
UnencodedDigestIssue
|
1126
1139
|
UserReidentificationIssue
|
1127
1140
|
|
1128
1141
|
# This struct holds a list of optional fields with additional information
|
@@ -1154,6 +1167,7 @@ experimental domain Audits
|
|
1154
1167
|
optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
|
1155
1168
|
optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
|
1156
1169
|
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
|
1170
|
+
optional UnencodedDigestIssueDetails unencodedDigestIssueDetails
|
1157
1171
|
optional UserReidentificationIssueDetails userReidentificationIssueDetails
|
1158
1172
|
|
1159
1173
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
@@ -2134,6 +2148,8 @@ experimental domain CSS
|
|
2134
2148
|
optional DOM.LogicalAxes logicalAxes
|
2135
2149
|
# true if the query contains scroll-state() queries.
|
2136
2150
|
optional boolean queriesScrollState
|
2151
|
+
# true if the query contains anchored() queries.
|
2152
|
+
optional boolean queriesAnchored
|
2137
2153
|
|
2138
2154
|
# CSS Supports at-rule descriptor.
|
2139
2155
|
experimental type CSSSupports extends object
|
@@ -3717,9 +3733,9 @@ domain DOM
|
|
3717
3733
|
|
3718
3734
|
# Returns the query container of the given node based on container query
|
3719
3735
|
# conditions: containerName, physical and logical axes, and whether it queries
|
3720
|
-
# scroll-state. If no axes are provided and
|
3721
|
-
# style container is returned, which is the
|
3722
|
-
# element with a matching container-name.
|
3736
|
+
# scroll-state or anchored elements. If no axes are provided and
|
3737
|
+
# queriesScrollState is false, the style container is returned, which is the
|
3738
|
+
# direct parent or the closest element with a matching container-name.
|
3723
3739
|
experimental command getContainerForNode
|
3724
3740
|
parameters
|
3725
3741
|
NodeId nodeId
|
@@ -3727,6 +3743,7 @@ domain DOM
|
|
3727
3743
|
optional PhysicalAxes physicalAxes
|
3728
3744
|
optional LogicalAxes logicalAxes
|
3729
3745
|
optional boolean queriesScrollState
|
3746
|
+
optional boolean queriesAnchored
|
3730
3747
|
returns
|
3731
3748
|
# The container node for the given node, or null if not found.
|
3732
3749
|
optional NodeId nodeId
|
@@ -13245,6 +13262,7 @@ experimental domain Preload
|
|
13245
13262
|
V8OptimizerDisabled
|
13246
13263
|
PrerenderFailedDuringPrefetch
|
13247
13264
|
BrowsingDataRemoved
|
13265
|
+
PrerenderHostReused
|
13248
13266
|
|
13249
13267
|
# Fired when a preload enabled state is updated.
|
13250
13268
|
event preloadEnabledStateUpdated
|
@@ -2603,9 +2603,9 @@ export namespace ProtocolMapping {
|
|
2603
2603
|
/**
|
2604
2604
|
* Returns the query container of the given node based on container query
|
2605
2605
|
* conditions: containerName, physical and logical axes, and whether it queries
|
2606
|
-
* scroll-state. If no axes are provided and
|
2607
|
-
* style container is returned, which is the
|
2608
|
-
* element with a matching container-name.
|
2606
|
+
* scroll-state or anchored elements. If no axes are provided and
|
2607
|
+
* queriesScrollState is false, the style container is returned, which is the
|
2608
|
+
* direct parent or the closest element with a matching container-name.
|
2609
2609
|
*/
|
2610
2610
|
'DOM.getContainerForNode': {
|
2611
2611
|
paramsType: [Protocol.DOM.GetContainerForNodeRequest];
|