devtools-protocol 0.0.1676914 → 0.0.1678596
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 +17 -34
- package/json/js_protocol.json +2 -1
- package/package.json +1 -1
- package/pdl/domains/Audits.pdl +3 -0
- package/pdl/domains/Emulation.pdl +10 -0
- package/pdl/domains/Network.pdl +0 -16
- package/pdl/domains/Page.pdl +1 -1
- package/pdl/js_protocol.pdl +2 -8
- package/types/protocol-mapping.d.ts +15 -23
- package/types/protocol-proxy-api.d.ts +13 -19
- package/types/protocol-tests-proxy-api.d.ts +13 -19
- package/types/protocol.d.ts +7 -16
|
@@ -1696,7 +1696,10 @@
|
|
|
1696
1696
|
"ItemNotInnerList",
|
|
1697
1697
|
"InvalidAllowlistItemType",
|
|
1698
1698
|
"ReportingEndpointNotToken",
|
|
1699
|
-
"InvalidUrlPattern"
|
|
1699
|
+
"InvalidUrlPattern",
|
|
1700
|
+
"IFrameAttributeLoosensEmbeddingRequirement",
|
|
1701
|
+
"InvalidAllowConnectionAllowlistFrom",
|
|
1702
|
+
"EmbeddingRequirementNotSatisfied"
|
|
1700
1703
|
]
|
|
1701
1704
|
},
|
|
1702
1705
|
{
|
|
@@ -11280,6 +11283,18 @@
|
|
|
11280
11283
|
}
|
|
11281
11284
|
]
|
|
11282
11285
|
},
|
|
11286
|
+
{
|
|
11287
|
+
"name": "setVirtualKeyboardGeometryOverride",
|
|
11288
|
+
"description": "Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The\nprovided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and\nenv(keyboard-inset-*) values on the inspected frame. The override applies independently of\nnavigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without\nmutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the\noverride.",
|
|
11289
|
+
"experimental": true,
|
|
11290
|
+
"parameters": [
|
|
11291
|
+
{
|
|
11292
|
+
"name": "keyboardRect",
|
|
11293
|
+
"optional": true,
|
|
11294
|
+
"$ref": "DOM.Rect"
|
|
11295
|
+
}
|
|
11296
|
+
]
|
|
11297
|
+
},
|
|
11283
11298
|
{
|
|
11284
11299
|
"name": "setDeviceMetricsOverride",
|
|
11285
11300
|
"description": "Overrides the values of device screen dimensions (window.screen.width, window.screen.height,\nwindow.innerWidth, window.innerHeight, and \"device-width\"/\"device-height\"-related CSS media\nquery results).",
|
|
@@ -17253,18 +17268,6 @@
|
|
|
17253
17268
|
}
|
|
17254
17269
|
]
|
|
17255
17270
|
},
|
|
17256
|
-
{
|
|
17257
|
-
"id": "ContentEncoding",
|
|
17258
|
-
"description": "List of content encodings supported by the backend.",
|
|
17259
|
-
"experimental": true,
|
|
17260
|
-
"type": "string",
|
|
17261
|
-
"enum": [
|
|
17262
|
-
"deflate",
|
|
17263
|
-
"gzip",
|
|
17264
|
-
"br",
|
|
17265
|
-
"zstd"
|
|
17266
|
-
]
|
|
17267
|
-
},
|
|
17268
17271
|
{
|
|
17269
17272
|
"id": "NetworkConditions",
|
|
17270
17273
|
"experimental": true,
|
|
@@ -18281,26 +18284,6 @@
|
|
|
18281
18284
|
}
|
|
18282
18285
|
],
|
|
18283
18286
|
"commands": [
|
|
18284
|
-
{
|
|
18285
|
-
"name": "setAcceptedEncodings",
|
|
18286
|
-
"description": "Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.",
|
|
18287
|
-
"experimental": true,
|
|
18288
|
-
"parameters": [
|
|
18289
|
-
{
|
|
18290
|
-
"name": "encodings",
|
|
18291
|
-
"description": "List of accepted content encodings.",
|
|
18292
|
-
"type": "array",
|
|
18293
|
-
"items": {
|
|
18294
|
-
"$ref": "ContentEncoding"
|
|
18295
|
-
}
|
|
18296
|
-
}
|
|
18297
|
-
]
|
|
18298
|
-
},
|
|
18299
|
-
{
|
|
18300
|
-
"name": "clearAcceptedEncodingsOverride",
|
|
18301
|
-
"description": "Clears accepted encodings set by setAcceptedEncodings",
|
|
18302
|
-
"experimental": true
|
|
18303
|
-
},
|
|
18304
18287
|
{
|
|
18305
18288
|
"name": "canClearBrowserCache",
|
|
18306
18289
|
"description": "Tells whether clearing browser cache is supported.",
|
|
@@ -21804,7 +21787,6 @@
|
|
|
21804
21787
|
"otp-credentials",
|
|
21805
21788
|
"payment",
|
|
21806
21789
|
"picture-in-picture",
|
|
21807
|
-
"private-aggregation",
|
|
21808
21790
|
"private-state-token-issuance",
|
|
21809
21791
|
"private-state-token-redemption",
|
|
21810
21792
|
"publickey-credentials-create",
|
|
@@ -23177,6 +23159,7 @@
|
|
|
23177
23159
|
"EmbedderExtensionMessagingForOpenPort",
|
|
23178
23160
|
"EmbedderExtensionSentMessageToCachedFrame",
|
|
23179
23161
|
"EmbedderExtensionFrame",
|
|
23162
|
+
"EmbedderPrivilegedWebContents",
|
|
23180
23163
|
"RequestedByWebViewClient",
|
|
23181
23164
|
"PostMessageByWebViewClient",
|
|
23182
23165
|
"CacheControlNoStoreDeviceBoundSessionTerminated",
|
package/json/js_protocol.json
CHANGED
|
@@ -1040,7 +1040,8 @@
|
|
|
1040
1040
|
},
|
|
1041
1041
|
{
|
|
1042
1042
|
"name": "setScriptSource",
|
|
1043
|
-
"description": "
|
|
1043
|
+
"description": "Live edit is no longer supported and this command always fails with a \"no longer available\" error.",
|
|
1044
|
+
"deprecated": true,
|
|
1044
1045
|
"parameters": [
|
|
1045
1046
|
{
|
|
1046
1047
|
"name": "scriptId",
|
package/package.json
CHANGED
package/pdl/domains/Audits.pdl
CHANGED
|
@@ -341,6 +341,9 @@ experimental domain Audits
|
|
|
341
341
|
InvalidAllowlistItemType
|
|
342
342
|
ReportingEndpointNotToken
|
|
343
343
|
InvalidUrlPattern
|
|
344
|
+
IFrameAttributeLoosensEmbeddingRequirement
|
|
345
|
+
InvalidAllowConnectionAllowlistFrom
|
|
346
|
+
EmbeddingRequirementNotSatisfied
|
|
344
347
|
|
|
345
348
|
# Details for issues about documents in Quirks Mode
|
|
346
349
|
# or Limited Quirks Mode that affects page layouting.
|
|
@@ -258,6 +258,16 @@ domain Emulation
|
|
|
258
258
|
parameters
|
|
259
259
|
SafeAreaInsets insets
|
|
260
260
|
|
|
261
|
+
# Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
|
|
262
|
+
# provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
|
|
263
|
+
# env(keyboard-inset-*) values on the inspected frame. The override applies independently of
|
|
264
|
+
# navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
|
|
265
|
+
# mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
|
|
266
|
+
# override.
|
|
267
|
+
experimental command setVirtualKeyboardGeometryOverride
|
|
268
|
+
parameters
|
|
269
|
+
optional DOM.Rect keyboardRect
|
|
270
|
+
|
|
261
271
|
# Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
|
262
272
|
# window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
|
263
273
|
# query results).
|
package/pdl/domains/Network.pdl
CHANGED
|
@@ -919,22 +919,6 @@ domain Network
|
|
|
919
919
|
# Errors occurred while handling the signed exchange.
|
|
920
920
|
optional array of SignedExchangeError errors
|
|
921
921
|
|
|
922
|
-
# List of content encodings supported by the backend.
|
|
923
|
-
experimental type ContentEncoding extends string
|
|
924
|
-
enum
|
|
925
|
-
deflate
|
|
926
|
-
gzip
|
|
927
|
-
br
|
|
928
|
-
zstd
|
|
929
|
-
|
|
930
|
-
# Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
|
931
|
-
experimental command setAcceptedEncodings
|
|
932
|
-
parameters
|
|
933
|
-
# List of accepted content encodings.
|
|
934
|
-
array of ContentEncoding encodings
|
|
935
|
-
|
|
936
|
-
# Clears accepted encodings set by setAcceptedEncodings
|
|
937
|
-
experimental command clearAcceptedEncodingsOverride
|
|
938
922
|
|
|
939
923
|
# Tells whether clearing browser cache is supported.
|
|
940
924
|
deprecated command canClearBrowserCache
|
package/pdl/domains/Page.pdl
CHANGED
|
@@ -148,7 +148,6 @@ domain Page
|
|
|
148
148
|
otp-credentials
|
|
149
149
|
payment
|
|
150
150
|
picture-in-picture
|
|
151
|
-
private-aggregation
|
|
152
151
|
private-state-token-issuance
|
|
153
152
|
private-state-token-redemption
|
|
154
153
|
publickey-credentials-create
|
|
@@ -1647,6 +1646,7 @@ domain Page
|
|
|
1647
1646
|
EmbedderExtensionMessagingForOpenPort
|
|
1648
1647
|
EmbedderExtensionSentMessageToCachedFrame
|
|
1649
1648
|
EmbedderExtensionFrame
|
|
1649
|
+
EmbedderPrivilegedWebContents
|
|
1650
1650
|
RequestedByWebViewClient
|
|
1651
1651
|
PostMessageByWebViewClient
|
|
1652
1652
|
CacheControlNoStoreDeviceBoundSessionTerminated
|
package/pdl/js_protocol.pdl
CHANGED
|
@@ -487,14 +487,8 @@ domain Debugger
|
|
|
487
487
|
# New return value.
|
|
488
488
|
Runtime.CallArgument newValue
|
|
489
489
|
|
|
490
|
-
#
|
|
491
|
-
|
|
492
|
-
# In general, functions that are currently on the stack can not be edited with
|
|
493
|
-
# a single exception: If the edited function is the top-most stack frame and
|
|
494
|
-
# that is the only activation of that function on the stack. In this case
|
|
495
|
-
# the live edit will be successful and a `Debugger.restartFrame` for the
|
|
496
|
-
# top-most function is automatically triggered.
|
|
497
|
-
command setScriptSource
|
|
490
|
+
# Live edit is no longer supported and this command always fails with a "no longer available" error.
|
|
491
|
+
deprecated command setScriptSource
|
|
498
492
|
parameters
|
|
499
493
|
# Id of the script to edit.
|
|
500
494
|
Runtime.ScriptId scriptId
|
|
@@ -1343,13 +1343,8 @@ export namespace ProtocolMapping {
|
|
|
1343
1343
|
returnType: void;
|
|
1344
1344
|
};
|
|
1345
1345
|
/**
|
|
1346
|
-
*
|
|
1347
|
-
*
|
|
1348
|
-
* In general, functions that are currently on the stack can not be edited with
|
|
1349
|
-
* a single exception: If the edited function is the top-most stack frame and
|
|
1350
|
-
* that is the only activation of that function on the stack. In this case
|
|
1351
|
-
* the live edit will be successful and a `Debugger.restartFrame` for the
|
|
1352
|
-
* top-most function is automatically triggered.
|
|
1346
|
+
* Live edit is no longer supported and this command always fails with a "no longer available" error.
|
|
1347
|
+
* @deprecated
|
|
1353
1348
|
*/
|
|
1354
1349
|
'Debugger.setScriptSource': {
|
|
1355
1350
|
paramsType: [Protocol.Debugger.SetScriptSourceRequest];
|
|
@@ -3292,6 +3287,19 @@ export namespace ProtocolMapping {
|
|
|
3292
3287
|
paramsType: [Protocol.Emulation.SetSafeAreaInsetsOverrideRequest];
|
|
3293
3288
|
returnType: void;
|
|
3294
3289
|
};
|
|
3290
|
+
/**
|
|
3291
|
+
* Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
|
|
3292
|
+
* provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
|
|
3293
|
+
* env(keyboard-inset-*) values on the inspected frame. The override applies independently of
|
|
3294
|
+
* navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
|
|
3295
|
+
* mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
|
|
3296
|
+
* override.
|
|
3297
|
+
* @experimental
|
|
3298
|
+
*/
|
|
3299
|
+
'Emulation.setVirtualKeyboardGeometryOverride': {
|
|
3300
|
+
paramsType: [Protocol.Emulation.SetVirtualKeyboardGeometryOverrideRequest?];
|
|
3301
|
+
returnType: void;
|
|
3302
|
+
};
|
|
3295
3303
|
/**
|
|
3296
3304
|
* Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
|
3297
3305
|
* window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
|
@@ -4231,22 +4239,6 @@ export namespace ProtocolMapping {
|
|
|
4231
4239
|
paramsType: [];
|
|
4232
4240
|
returnType: Protocol.Memory.GetSamplingProfileResponse;
|
|
4233
4241
|
};
|
|
4234
|
-
/**
|
|
4235
|
-
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
|
4236
|
-
* @experimental
|
|
4237
|
-
*/
|
|
4238
|
-
'Network.setAcceptedEncodings': {
|
|
4239
|
-
paramsType: [Protocol.Network.SetAcceptedEncodingsRequest];
|
|
4240
|
-
returnType: void;
|
|
4241
|
-
};
|
|
4242
|
-
/**
|
|
4243
|
-
* Clears accepted encodings set by setAcceptedEncodings
|
|
4244
|
-
* @experimental
|
|
4245
|
-
*/
|
|
4246
|
-
'Network.clearAcceptedEncodingsOverride': {
|
|
4247
|
-
paramsType: [];
|
|
4248
|
-
returnType: void;
|
|
4249
|
-
};
|
|
4250
4242
|
/**
|
|
4251
4243
|
* Tells whether clearing browser cache is supported.
|
|
4252
4244
|
* @deprecated
|
|
@@ -333,13 +333,8 @@ export namespace ProtocolProxyApi {
|
|
|
333
333
|
setReturnValue(params: Protocol.Debugger.SetReturnValueRequest): Promise<void>;
|
|
334
334
|
|
|
335
335
|
/**
|
|
336
|
-
*
|
|
337
|
-
*
|
|
338
|
-
* In general, functions that are currently on the stack can not be edited with
|
|
339
|
-
* a single exception: If the edited function is the top-most stack frame and
|
|
340
|
-
* that is the only activation of that function on the stack. In this case
|
|
341
|
-
* the live edit will be successful and a `Debugger.restartFrame` for the
|
|
342
|
-
* top-most function is automatically triggered.
|
|
336
|
+
* Live edit is no longer supported and this command always fails with a "no longer available" error.
|
|
337
|
+
* @deprecated
|
|
343
338
|
*/
|
|
344
339
|
setScriptSource(params: Protocol.Debugger.SetScriptSourceRequest): Promise<Protocol.Debugger.SetScriptSourceResponse>;
|
|
345
340
|
|
|
@@ -2192,6 +2187,17 @@ export namespace ProtocolProxyApi {
|
|
|
2192
2187
|
*/
|
|
2193
2188
|
setSafeAreaInsetsOverride(params: Protocol.Emulation.SetSafeAreaInsetsOverrideRequest): Promise<void>;
|
|
2194
2189
|
|
|
2190
|
+
/**
|
|
2191
|
+
* Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
|
|
2192
|
+
* provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
|
|
2193
|
+
* env(keyboard-inset-*) values on the inspected frame. The override applies independently of
|
|
2194
|
+
* navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
|
|
2195
|
+
* mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
|
|
2196
|
+
* override.
|
|
2197
|
+
* @experimental
|
|
2198
|
+
*/
|
|
2199
|
+
setVirtualKeyboardGeometryOverride(params: Protocol.Emulation.SetVirtualKeyboardGeometryOverrideRequest): Promise<void>;
|
|
2200
|
+
|
|
2195
2201
|
/**
|
|
2196
2202
|
* Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
|
2197
2203
|
* window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
|
@@ -3039,18 +3045,6 @@ export namespace ProtocolProxyApi {
|
|
|
3039
3045
|
}
|
|
3040
3046
|
|
|
3041
3047
|
export interface NetworkApi {
|
|
3042
|
-
/**
|
|
3043
|
-
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
|
3044
|
-
* @experimental
|
|
3045
|
-
*/
|
|
3046
|
-
setAcceptedEncodings(params: Protocol.Network.SetAcceptedEncodingsRequest): Promise<void>;
|
|
3047
|
-
|
|
3048
|
-
/**
|
|
3049
|
-
* Clears accepted encodings set by setAcceptedEncodings
|
|
3050
|
-
* @experimental
|
|
3051
|
-
*/
|
|
3052
|
-
clearAcceptedEncodingsOverride(): Promise<void>;
|
|
3053
|
-
|
|
3054
3048
|
/**
|
|
3055
3049
|
* Tells whether clearing browser cache is supported.
|
|
3056
3050
|
* @deprecated
|
|
@@ -335,13 +335,8 @@ export namespace ProtocolTestsProxyApi {
|
|
|
335
335
|
setReturnValue(params: Protocol.Debugger.SetReturnValueRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
336
336
|
|
|
337
337
|
/**
|
|
338
|
-
*
|
|
339
|
-
*
|
|
340
|
-
* In general, functions that are currently on the stack can not be edited with
|
|
341
|
-
* a single exception: If the edited function is the top-most stack frame and
|
|
342
|
-
* that is the only activation of that function on the stack. In this case
|
|
343
|
-
* the live edit will be successful and a `Debugger.restartFrame` for the
|
|
344
|
-
* top-most function is automatically triggered.
|
|
338
|
+
* Live edit is no longer supported and this command always fails with a "no longer available" error.
|
|
339
|
+
* @deprecated
|
|
345
340
|
*/
|
|
346
341
|
setScriptSource(params: Protocol.Debugger.SetScriptSourceRequest): Promise<{id: number, result: Protocol.Debugger.SetScriptSourceResponse, sessionId: string}>;
|
|
347
342
|
|
|
@@ -2330,6 +2325,17 @@ export namespace ProtocolTestsProxyApi {
|
|
|
2330
2325
|
*/
|
|
2331
2326
|
setSafeAreaInsetsOverride(params: Protocol.Emulation.SetSafeAreaInsetsOverrideRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
2332
2327
|
|
|
2328
|
+
/**
|
|
2329
|
+
* Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The
|
|
2330
|
+
* provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and
|
|
2331
|
+
* env(keyboard-inset-*) values on the inspected frame. The override applies independently of
|
|
2332
|
+
* navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without
|
|
2333
|
+
* mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the
|
|
2334
|
+
* override.
|
|
2335
|
+
* @experimental
|
|
2336
|
+
*/
|
|
2337
|
+
setVirtualKeyboardGeometryOverride(params: Protocol.Emulation.SetVirtualKeyboardGeometryOverrideRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
2338
|
+
|
|
2333
2339
|
/**
|
|
2334
2340
|
* Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
|
2335
2341
|
* window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
|
@@ -3215,18 +3221,6 @@ export namespace ProtocolTestsProxyApi {
|
|
|
3215
3221
|
}
|
|
3216
3222
|
|
|
3217
3223
|
export interface NetworkApi {
|
|
3218
|
-
/**
|
|
3219
|
-
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
|
3220
|
-
* @experimental
|
|
3221
|
-
*/
|
|
3222
|
-
setAcceptedEncodings(params: Protocol.Network.SetAcceptedEncodingsRequest): Promise<{id: number, result: void, sessionId: string}>;
|
|
3223
|
-
|
|
3224
|
-
/**
|
|
3225
|
-
* Clears accepted encodings set by setAcceptedEncodings
|
|
3226
|
-
* @experimental
|
|
3227
|
-
*/
|
|
3228
|
-
clearAcceptedEncodingsOverride(): Promise<{id: number, result: void, sessionId: string}>;
|
|
3229
|
-
|
|
3230
3224
|
/**
|
|
3231
3225
|
* Tells whether clearing browser cache is supported.
|
|
3232
3226
|
* @deprecated
|
package/types/protocol.d.ts
CHANGED
|
@@ -3724,7 +3724,7 @@ export namespace Protocol {
|
|
|
3724
3724
|
|
|
3725
3725
|
export type UnencodedDigestError = ('MalformedDictionary' | 'UnknownAlgorithm' | 'IncorrectDigestType' | 'IncorrectDigestLength');
|
|
3726
3726
|
|
|
3727
|
-
export type ConnectionAllowlistError = ('InvalidHeader' | 'MoreThanOneList' | 'ItemNotInnerList' | 'InvalidAllowlistItemType' | 'ReportingEndpointNotToken' | 'InvalidUrlPattern');
|
|
3727
|
+
export type ConnectionAllowlistError = ('InvalidHeader' | 'MoreThanOneList' | 'ItemNotInnerList' | 'InvalidAllowlistItemType' | 'ReportingEndpointNotToken' | 'InvalidUrlPattern' | 'IFrameAttributeLoosensEmbeddingRequirement' | 'InvalidAllowConnectionAllowlistFrom' | 'EmbeddingRequirementNotSatisfied');
|
|
3728
3728
|
|
|
3729
3729
|
/**
|
|
3730
3730
|
* Details for issues about documents in Quirks Mode
|
|
@@ -9639,6 +9639,10 @@ export namespace Protocol {
|
|
|
9639
9639
|
insets: SafeAreaInsets;
|
|
9640
9640
|
}
|
|
9641
9641
|
|
|
9642
|
+
export interface SetVirtualKeyboardGeometryOverrideRequest {
|
|
9643
|
+
keyboardRect?: DOM.Rect;
|
|
9644
|
+
}
|
|
9645
|
+
|
|
9642
9646
|
export const enum SetDeviceMetricsOverrideRequestScrollbarType {
|
|
9643
9647
|
Overlay = 'overlay',
|
|
9644
9648
|
Default = 'default',
|
|
@@ -13644,12 +13648,6 @@ export namespace Protocol {
|
|
|
13644
13648
|
errors?: SignedExchangeError[];
|
|
13645
13649
|
}
|
|
13646
13650
|
|
|
13647
|
-
/**
|
|
13648
|
-
* List of content encodings supported by the backend.
|
|
13649
|
-
* @experimental
|
|
13650
|
-
*/
|
|
13651
|
-
export type ContentEncoding = ('deflate' | 'gzip' | 'br' | 'zstd');
|
|
13652
|
-
|
|
13653
13651
|
/**
|
|
13654
13652
|
* @experimental
|
|
13655
13653
|
*/
|
|
@@ -14316,13 +14314,6 @@ export namespace Protocol {
|
|
|
14316
14314
|
includeCredentials: boolean;
|
|
14317
14315
|
}
|
|
14318
14316
|
|
|
14319
|
-
export interface SetAcceptedEncodingsRequest {
|
|
14320
|
-
/**
|
|
14321
|
-
* List of accepted content encodings.
|
|
14322
|
-
*/
|
|
14323
|
-
encodings: ContentEncoding[];
|
|
14324
|
-
}
|
|
14325
|
-
|
|
14326
14317
|
export interface CanClearBrowserCacheResponse {
|
|
14327
14318
|
/**
|
|
14328
14319
|
* True if browser cache can be cleared.
|
|
@@ -16635,7 +16626,7 @@ export namespace Protocol {
|
|
|
16635
16626
|
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
16636
16627
|
* @experimental
|
|
16637
16628
|
*/
|
|
16638
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'autofill' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-
|
|
16629
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'autofill' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network' | 'local-network-access' | 'loopback-network' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'webnn' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
|
|
16639
16630
|
|
|
16640
16631
|
/**
|
|
16641
16632
|
* Reason for a permissions policy feature to be disabled.
|
|
@@ -17361,7 +17352,7 @@ export namespace Protocol {
|
|
|
17361
17352
|
* List of not restored reasons for back-forward cache.
|
|
17362
17353
|
* @experimental
|
|
17363
17354
|
*/
|
|
17364
|
-
export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'ForwardCacheDisabled' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebViewSettingsChanged' | 'WebViewJavaScriptObjectChanged' | 'WebViewMessageListenerInjected' | 'WebViewSafeBrowsingAllowlistChanged' | 'WebViewDocumentStartJavascriptChanged' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'SharedWorkerMessage' | 'SharedWorkerWithNoActiveClient' | 'WebLocks' | 'WebLocksContention' | 'WebHID' | 'WebBluetooth' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'EmbedderExtensionFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
|
|
17355
|
+
export type BackForwardCacheNotRestoredReason = ('NotPrimaryMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'ForwardCacheDisabled' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebViewSettingsChanged' | 'WebViewJavaScriptObjectChanged' | 'WebViewMessageListenerInjected' | 'WebViewSafeBrowsingAllowlistChanged' | 'WebViewDocumentStartJavascriptChanged' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'SharedWorkerMessage' | 'SharedWorkerWithNoActiveClient' | 'WebLocks' | 'WebLocksContention' | 'WebHID' | 'WebBluetooth' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'EmbedderExtensionFrame' | 'EmbedderPrivilegedWebContents' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
|
|
17365
17356
|
|
|
17366
17357
|
/**
|
|
17367
17358
|
* Types of not restored reasons for back-forward cache.
|