devtools-protocol 0.0.1310407 → 0.0.1312386
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 +36 -10
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +27 -15
- package/types/protocol.d.ts +29 -18
@@ -1776,7 +1776,8 @@
|
|
1776
1776
|
"NotSignedInWithIdp",
|
1777
1777
|
"MissingTransientUserActivation",
|
1778
1778
|
"ReplacedByButtonMode",
|
1779
|
-
"RelyingPartyOriginIsOpaque"
|
1779
|
+
"RelyingPartyOriginIsOpaque",
|
1780
|
+
"TypeNotMatching"
|
1780
1781
|
]
|
1781
1782
|
},
|
1782
1783
|
{
|
@@ -12967,6 +12968,24 @@
|
|
12967
12968
|
}
|
12968
12969
|
]
|
12969
12970
|
},
|
12971
|
+
{
|
12972
|
+
"id": "CookiePartitionKey",
|
12973
|
+
"description": "cookiePartitionKey object\nThe representation of the components of the key that are created by the cookiePartitionKey class contained in net/cookies/cookie_partition_key.h.",
|
12974
|
+
"experimental": true,
|
12975
|
+
"type": "object",
|
12976
|
+
"properties": [
|
12977
|
+
{
|
12978
|
+
"name": "topLevelSite",
|
12979
|
+
"description": "The site of the top-level URL the browser was visiting at the start\nof the request to the endpoint that set the cookie.",
|
12980
|
+
"type": "string"
|
12981
|
+
},
|
12982
|
+
{
|
12983
|
+
"name": "hasCrossSiteAncestor",
|
12984
|
+
"description": "Indicates if the cookie has any ancestors that are cross-site to the topLevelSite.",
|
12985
|
+
"type": "boolean"
|
12986
|
+
}
|
12987
|
+
]
|
12988
|
+
},
|
12970
12989
|
{
|
12971
12990
|
"id": "Cookie",
|
12972
12991
|
"description": "Cookie object",
|
@@ -13050,10 +13069,10 @@
|
|
13050
13069
|
},
|
13051
13070
|
{
|
13052
13071
|
"name": "partitionKey",
|
13053
|
-
"description": "Cookie partition key.
|
13072
|
+
"description": "Cookie partition key.",
|
13054
13073
|
"experimental": true,
|
13055
13074
|
"optional": true,
|
13056
|
-
"
|
13075
|
+
"$ref": "CookiePartitionKey"
|
13057
13076
|
},
|
13058
13077
|
{
|
13059
13078
|
"name": "partitionKeyOpaque",
|
@@ -13300,10 +13319,10 @@
|
|
13300
13319
|
},
|
13301
13320
|
{
|
13302
13321
|
"name": "partitionKey",
|
13303
|
-
"description": "Cookie partition key.
|
13322
|
+
"description": "Cookie partition key. If not set, the cookie will be set as not partitioned.",
|
13304
13323
|
"experimental": true,
|
13305
13324
|
"optional": true,
|
13306
|
-
"
|
13325
|
+
"$ref": "CookiePartitionKey"
|
13307
13326
|
}
|
13308
13327
|
]
|
13309
13328
|
},
|
@@ -14055,10 +14074,10 @@
|
|
14055
14074
|
},
|
14056
14075
|
{
|
14057
14076
|
"name": "partitionKey",
|
14058
|
-
"description": "If specified, deletes only cookies with the the given name and partitionKey where
|
14077
|
+
"description": "If specified, deletes only cookies with the the given name and partitionKey where\nall partition key attributes match the cookie partition key attribute.",
|
14059
14078
|
"experimental": true,
|
14060
14079
|
"optional": true,
|
14061
|
-
"
|
14080
|
+
"$ref": "CookiePartitionKey"
|
14062
14081
|
}
|
14063
14082
|
]
|
14064
14083
|
},
|
@@ -14462,10 +14481,10 @@
|
|
14462
14481
|
},
|
14463
14482
|
{
|
14464
14483
|
"name": "partitionKey",
|
14465
|
-
"description": "Cookie partition key.
|
14484
|
+
"description": "Cookie partition key. If not set, the cookie will be set as not partitioned.",
|
14466
14485
|
"experimental": true,
|
14467
14486
|
"optional": true,
|
14468
|
-
"
|
14487
|
+
"$ref": "CookiePartitionKey"
|
14469
14488
|
}
|
14470
14489
|
],
|
14471
14490
|
"returns": [
|
@@ -15301,8 +15320,9 @@
|
|
15301
15320
|
{
|
15302
15321
|
"name": "cookiePartitionKey",
|
15303
15322
|
"description": "The cookie partition key that will be used to store partitioned cookies set in this response.\nOnly sent when partitioned cookies are enabled.",
|
15323
|
+
"experimental": true,
|
15304
15324
|
"optional": true,
|
15305
|
-
"
|
15325
|
+
"$ref": "CookiePartitionKey"
|
15306
15326
|
},
|
15307
15327
|
{
|
15308
15328
|
"name": "cookiePartitionKeyOpaque",
|
@@ -16799,6 +16819,7 @@
|
|
16799
16819
|
"clipboard-write",
|
16800
16820
|
"compute-pressure",
|
16801
16821
|
"cross-origin-isolated",
|
16822
|
+
"deferred-fetch",
|
16802
16823
|
"direct-sockets",
|
16803
16824
|
"display-capture",
|
16804
16825
|
"document-domain",
|
@@ -18102,6 +18123,11 @@
|
|
18102
18123
|
"HTTPAuthRequired",
|
18103
18124
|
"CookieFlushed",
|
18104
18125
|
"BroadcastChannelOnMessage",
|
18126
|
+
"WebViewSettingsChanged",
|
18127
|
+
"WebViewJavaScriptObjectChanged",
|
18128
|
+
"WebViewMessageListenerInjected",
|
18129
|
+
"WebViewSafeBrowsingAllowlistChanged",
|
18130
|
+
"WebViewDocumentStartJavascriptChanged",
|
18105
18131
|
"WebSocket",
|
18106
18132
|
"WebTransport",
|
18107
18133
|
"WebRTC",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -915,6 +915,7 @@ experimental domain Audits
|
|
915
915
|
MissingTransientUserActivation
|
916
916
|
ReplacedByButtonMode
|
917
917
|
RelyingPartyOriginIsOpaque
|
918
|
+
TypeNotMatching
|
918
919
|
|
919
920
|
type FederatedAuthUserInfoRequestIssueDetails extends object
|
920
921
|
properties
|
@@ -6032,6 +6033,16 @@ domain Network
|
|
6032
6033
|
# Set if another request triggered this request (e.g. preflight).
|
6033
6034
|
optional RequestId requestId
|
6034
6035
|
|
6036
|
+
# cookiePartitionKey object
|
6037
|
+
# The representation of the components of the key that are created by the cookiePartitionKey class contained in net/cookies/cookie_partition_key.h.
|
6038
|
+
experimental type CookiePartitionKey extends object
|
6039
|
+
properties
|
6040
|
+
# The site of the top-level URL the browser was visiting at the start
|
6041
|
+
# of the request to the endpoint that set the cookie.
|
6042
|
+
string topLevelSite
|
6043
|
+
# Indicates if the cookie has any ancestors that are cross-site to the topLevelSite.
|
6044
|
+
boolean hasCrossSiteAncestor
|
6045
|
+
|
6035
6046
|
# Cookie object
|
6036
6047
|
type Cookie extends object
|
6037
6048
|
properties
|
@@ -6065,9 +6076,8 @@ domain Network
|
|
6065
6076
|
# An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
|
6066
6077
|
# This is a temporary ability and it will be removed in the future.
|
6067
6078
|
experimental integer sourcePort
|
6068
|
-
# Cookie partition key.
|
6069
|
-
|
6070
|
-
experimental optional string partitionKey
|
6079
|
+
# Cookie partition key.
|
6080
|
+
experimental optional CookiePartitionKey partitionKey
|
6071
6081
|
# True if cookie partition key is opaque.
|
6072
6082
|
experimental optional boolean partitionKeyOpaque
|
6073
6083
|
|
@@ -6283,10 +6293,8 @@ domain Network
|
|
6283
6293
|
# An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
|
6284
6294
|
# This is a temporary ability and it will be removed in the future.
|
6285
6295
|
experimental optional integer sourcePort
|
6286
|
-
# Cookie partition key.
|
6287
|
-
|
6288
|
-
# If not set, the cookie will be set as not partitioned.
|
6289
|
-
experimental optional string partitionKey
|
6296
|
+
# Cookie partition key. If not set, the cookie will be set as not partitioned.
|
6297
|
+
experimental optional CookiePartitionKey partitionKey
|
6290
6298
|
|
6291
6299
|
# Authorization challenge for HTTP status code 401 or 407.
|
6292
6300
|
experimental type AuthChallenge extends object
|
@@ -6489,9 +6497,9 @@ domain Network
|
|
6489
6497
|
optional string domain
|
6490
6498
|
# If specified, deletes only cookies with the exact path.
|
6491
6499
|
optional string path
|
6492
|
-
# If specified, deletes only cookies with the the given name and partitionKey where
|
6493
|
-
#
|
6494
|
-
experimental optional
|
6500
|
+
# If specified, deletes only cookies with the the given name and partitionKey where
|
6501
|
+
# all partition key attributes match the cookie partition key attribute.
|
6502
|
+
experimental optional CookiePartitionKey partitionKey
|
6495
6503
|
|
6496
6504
|
# Disables network tracking, prevents network events from being sent to the client.
|
6497
6505
|
command disable
|
@@ -6668,10 +6676,8 @@ domain Network
|
|
6668
6676
|
# An unspecified port value allows protocol clients to emulate legacy cookie scope for the port.
|
6669
6677
|
# This is a temporary ability and it will be removed in the future.
|
6670
6678
|
experimental optional integer sourcePort
|
6671
|
-
# Cookie partition key.
|
6672
|
-
|
6673
|
-
# If not set, the cookie will be set as not partitioned.
|
6674
|
-
experimental optional string partitionKey
|
6679
|
+
# Cookie partition key. If not set, the cookie will be set as not partitioned.
|
6680
|
+
experimental optional CookiePartitionKey partitionKey
|
6675
6681
|
returns
|
6676
6682
|
# Always set to true. If an error occurs, the response indicates protocol error.
|
6677
6683
|
deprecated boolean success
|
@@ -7063,7 +7069,7 @@ domain Network
|
|
7063
7069
|
optional string headersText
|
7064
7070
|
# The cookie partition key that will be used to store partitioned cookies set in this response.
|
7065
7071
|
# Only sent when partitioned cookies are enabled.
|
7066
|
-
optional
|
7072
|
+
experimental optional CookiePartitionKey cookiePartitionKey
|
7067
7073
|
# True if partitioned cookies are enabled, but the partition key is not serializable to string.
|
7068
7074
|
optional boolean cookiePartitionKeyOpaque
|
7069
7075
|
# A list of cookies which should have been blocked by 3PCD but are exempted and stored from
|
@@ -7910,6 +7916,7 @@ domain Page
|
|
7910
7916
|
clipboard-write
|
7911
7917
|
compute-pressure
|
7912
7918
|
cross-origin-isolated
|
7919
|
+
deferred-fetch
|
7913
7920
|
direct-sockets
|
7914
7921
|
display-capture
|
7915
7922
|
document-domain
|
@@ -9242,6 +9249,11 @@ domain Page
|
|
9242
9249
|
HTTPAuthRequired
|
9243
9250
|
CookieFlushed
|
9244
9251
|
BroadcastChannelOnMessage
|
9252
|
+
WebViewSettingsChanged
|
9253
|
+
WebViewJavaScriptObjectChanged
|
9254
|
+
WebViewMessageListenerInjected
|
9255
|
+
WebViewSafeBrowsingAllowlistChanged
|
9256
|
+
WebViewDocumentStartJavascriptChanged
|
9245
9257
|
#Blocklisted features
|
9246
9258
|
WebSocket
|
9247
9259
|
WebTransport
|
package/types/protocol.d.ts
CHANGED
@@ -3579,7 +3579,7 @@ export namespace Protocol {
|
|
3579
3579
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3580
3580
|
* all cases except for success.
|
3581
3581
|
*/
|
3582
|
-
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'RelyingPartyOriginIsOpaque');
|
3582
|
+
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenIdpErrorResponse' | 'IdTokenCrossSiteIdpErrorResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked' | 'NotSignedInWithIdp' | 'MissingTransientUserActivation' | 'ReplacedByButtonMode' | 'RelyingPartyOriginIsOpaque' | 'TypeNotMatching');
|
3583
3583
|
|
3584
3584
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
3585
3585
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
@@ -10720,6 +10720,22 @@ export namespace Protocol {
|
|
10720
10720
|
requestId?: RequestId;
|
10721
10721
|
}
|
10722
10722
|
|
10723
|
+
/**
|
10724
|
+
* cookiePartitionKey object
|
10725
|
+
* The representation of the components of the key that are created by the cookiePartitionKey class contained in net/cookies/cookie_partition_key.h.
|
10726
|
+
*/
|
10727
|
+
export interface CookiePartitionKey {
|
10728
|
+
/**
|
10729
|
+
* The site of the top-level URL the browser was visiting at the start
|
10730
|
+
* of the request to the endpoint that set the cookie.
|
10731
|
+
*/
|
10732
|
+
topLevelSite: string;
|
10733
|
+
/**
|
10734
|
+
* Indicates if the cookie has any ancestors that are cross-site to the topLevelSite.
|
10735
|
+
*/
|
10736
|
+
hasCrossSiteAncestor: boolean;
|
10737
|
+
}
|
10738
|
+
|
10723
10739
|
/**
|
10724
10740
|
* Cookie object
|
10725
10741
|
*/
|
@@ -10783,10 +10799,9 @@ export namespace Protocol {
|
|
10783
10799
|
*/
|
10784
10800
|
sourcePort: integer;
|
10785
10801
|
/**
|
10786
|
-
* Cookie partition key.
|
10787
|
-
* of the request to the endpoint that set the cookie.
|
10802
|
+
* Cookie partition key.
|
10788
10803
|
*/
|
10789
|
-
partitionKey?:
|
10804
|
+
partitionKey?: CookiePartitionKey;
|
10790
10805
|
/**
|
10791
10806
|
* True if cookie partition key is opaque.
|
10792
10807
|
*/
|
@@ -10928,11 +10943,9 @@ export namespace Protocol {
|
|
10928
10943
|
*/
|
10929
10944
|
sourcePort?: integer;
|
10930
10945
|
/**
|
10931
|
-
* Cookie partition key.
|
10932
|
-
* of the request to the endpoint that set the cookie.
|
10933
|
-
* If not set, the cookie will be set as not partitioned.
|
10946
|
+
* Cookie partition key. If not set, the cookie will be set as not partitioned.
|
10934
10947
|
*/
|
10935
|
-
partitionKey?:
|
10948
|
+
partitionKey?: CookiePartitionKey;
|
10936
10949
|
}
|
10937
10950
|
|
10938
10951
|
export const enum AuthChallengeSource {
|
@@ -11352,10 +11365,10 @@ export namespace Protocol {
|
|
11352
11365
|
*/
|
11353
11366
|
path?: string;
|
11354
11367
|
/**
|
11355
|
-
* If specified, deletes only cookies with the the given name and partitionKey where
|
11356
|
-
*
|
11368
|
+
* If specified, deletes only cookies with the the given name and partitionKey where
|
11369
|
+
* all partition key attributes match the cookie partition key attribute.
|
11357
11370
|
*/
|
11358
|
-
partitionKey?:
|
11371
|
+
partitionKey?: CookiePartitionKey;
|
11359
11372
|
}
|
11360
11373
|
|
11361
11374
|
export interface EmulateNetworkConditionsRequest {
|
@@ -11611,11 +11624,9 @@ export namespace Protocol {
|
|
11611
11624
|
*/
|
11612
11625
|
sourcePort?: integer;
|
11613
11626
|
/**
|
11614
|
-
* Cookie partition key.
|
11615
|
-
* of the request to the endpoint that set the cookie.
|
11616
|
-
* If not set, the cookie will be set as not partitioned.
|
11627
|
+
* Cookie partition key. If not set, the cookie will be set as not partitioned.
|
11617
11628
|
*/
|
11618
|
-
partitionKey?:
|
11629
|
+
partitionKey?: CookiePartitionKey;
|
11619
11630
|
}
|
11620
11631
|
|
11621
11632
|
export interface SetCookieResponse {
|
@@ -12273,7 +12284,7 @@ export namespace Protocol {
|
|
12273
12284
|
* The cookie partition key that will be used to store partitioned cookies set in this response.
|
12274
12285
|
* Only sent when partitioned cookies are enabled.
|
12275
12286
|
*/
|
12276
|
-
cookiePartitionKey?:
|
12287
|
+
cookiePartitionKey?: CookiePartitionKey;
|
12277
12288
|
/**
|
12278
12289
|
* True if partitioned cookies are enabled, but the partition key is not serializable to string.
|
12279
12290
|
*/
|
@@ -13233,7 +13244,7 @@ export namespace Protocol {
|
|
13233
13244
|
* All Permissions Policy features. This enum should match the one defined
|
13234
13245
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
13235
13246
|
*/
|
13236
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | '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-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' | 'cross-origin-isolated' | 'direct-sockets' | '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' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'xr-spatial-tracking');
|
13247
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | '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-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' | 'cross-origin-isolated' | 'deferred-fetch' | 'direct-sockets' | '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' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-printing' | 'web-share' | 'window-management' | 'xr-spatial-tracking');
|
13237
13248
|
|
13238
13249
|
/**
|
13239
13250
|
* Reason for a permissions policy feature to be disabled.
|
@@ -13867,7 +13878,7 @@ export namespace Protocol {
|
|
13867
13878
|
/**
|
13868
13879
|
* List of not restored reasons for back-forward cache.
|
13869
13880
|
*/
|
13870
|
-
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' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'ErrorDocument' | 'FencedFramesEmbedder' | 'CookieDisabled' | 'HTTPAuthRequired' | 'CookieFlushed' | 'BroadcastChannelOnMessage' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'OutstandingNetworkRequestOthers' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCSticky' | 'WebTransportSticky' | 'WebSocketSticky' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient');
|
13881
|
+
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' | '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' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCSticky' | 'WebTransportSticky' | 'WebSocketSticky' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient');
|
13871
13882
|
|
13872
13883
|
/**
|
13873
13884
|
* Types of not restored reasons for back-forward cache.
|