devtools-protocol 0.0.1148337 → 0.0.1151065
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 +16 -2
- package/json/js_protocol.json +2 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +14 -0
- package/pdl/js_protocol.pdl +2 -2
- package/types/protocol-mapping.d.ts +13 -0
- package/types/protocol-proxy-api.d.ts +11 -0
- package/types/protocol.d.ts +9 -5
@@ -1627,7 +1627,8 @@
|
|
1627
1627
|
"ErrorIdToken",
|
1628
1628
|
"Canceled",
|
1629
1629
|
"RpPageNotVisible",
|
1630
|
-
"SilentMediationFailure"
|
1630
|
+
"SilentMediationFailure",
|
1631
|
+
"ThirdPartyCookiesBlocked"
|
1631
1632
|
]
|
1632
1633
|
},
|
1633
1634
|
{
|
@@ -16474,6 +16475,7 @@
|
|
16474
16475
|
"ActivationNavigationsDisallowedForBug1234857",
|
16475
16476
|
"ErrorDocument",
|
16476
16477
|
"FencedFramesEmbedder",
|
16478
|
+
"CookieDisabled",
|
16477
16479
|
"WebSocket",
|
16478
16480
|
"WebTransport",
|
16479
16481
|
"WebRTC",
|
@@ -17806,6 +17808,17 @@
|
|
17806
17808
|
"type": "boolean"
|
17807
17809
|
}
|
17808
17810
|
]
|
17811
|
+
},
|
17812
|
+
{
|
17813
|
+
"name": "setPrerenderingAllowed",
|
17814
|
+
"description": "Enable/disable prerendering manually.\n\nThis command is a short-term solution for https://crbug.com/1440085.\nSee https://docs.google.com/document/d/12HVmFxYj5Jc-eJr5OmWsa2bqTJsbgGLKI6ZIyx0_wpA\nfor more details.\n\nTODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets.",
|
17815
|
+
"experimental": true,
|
17816
|
+
"parameters": [
|
17817
|
+
{
|
17818
|
+
"name": "isAllowed",
|
17819
|
+
"type": "boolean"
|
17820
|
+
}
|
17821
|
+
]
|
17809
17822
|
}
|
17810
17823
|
],
|
17811
17824
|
"events": [
|
@@ -23327,7 +23340,8 @@
|
|
23327
23340
|
"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation",
|
23328
23341
|
"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation",
|
23329
23342
|
"MemoryPressureOnTrigger",
|
23330
|
-
"MemoryPressureAfterTriggered"
|
23343
|
+
"MemoryPressureAfterTriggered",
|
23344
|
+
"PrerenderingDisabledByDevTools"
|
23331
23345
|
]
|
23332
23346
|
},
|
23333
23347
|
{
|
package/json/js_protocol.json
CHANGED
@@ -3000,7 +3000,7 @@
|
|
3000
3000
|
},
|
3001
3001
|
{
|
3002
3002
|
"name": "serializationOptions",
|
3003
|
-
"description": "Specifies the result serialization. If provided, overrides\n`returnByValue` and `generateWebDriverValue`.",
|
3003
|
+
"description": "Specifies the result serialization. If provided, overrides\n`generatePreview`, `returnByValue` and `generateWebDriverValue`.",
|
3004
3004
|
"experimental": true,
|
3005
3005
|
"optional": true,
|
3006
3006
|
"$ref": "SerializationOptions"
|
@@ -3182,7 +3182,7 @@
|
|
3182
3182
|
},
|
3183
3183
|
{
|
3184
3184
|
"name": "serializationOptions",
|
3185
|
-
"description": "Specifies the result serialization. If provided, overrides\n`returnByValue` and `generateWebDriverValue`.",
|
3185
|
+
"description": "Specifies the result serialization. If provided, overrides\n`generatePreview`, `returnByValue` and `generateWebDriverValue`.",
|
3186
3186
|
"experimental": true,
|
3187
3187
|
"optional": true,
|
3188
3188
|
"$ref": "SerializationOptions"
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -818,6 +818,7 @@ experimental domain Audits
|
|
818
818
|
Canceled
|
819
819
|
RpPageNotVisible
|
820
820
|
SilentMediationFailure
|
821
|
+
ThirdPartyCookiesBlocked
|
821
822
|
|
822
823
|
# This issue tracks client hints related issues. It's used to deprecate old
|
823
824
|
# features, encourage the use of new ones, and provide general guidance.
|
@@ -8462,6 +8463,7 @@ domain Page
|
|
8462
8463
|
ActivationNavigationsDisallowedForBug1234857
|
8463
8464
|
ErrorDocument
|
8464
8465
|
FencedFramesEmbedder
|
8466
|
+
CookieDisabled
|
8465
8467
|
#Blocklisted features
|
8466
8468
|
WebSocket
|
8467
8469
|
WebTransport
|
@@ -8631,6 +8633,17 @@ domain Page
|
|
8631
8633
|
# Base64-encoded data
|
8632
8634
|
binary data
|
8633
8635
|
|
8636
|
+
# Enable/disable prerendering manually.
|
8637
|
+
#
|
8638
|
+
# This command is a short-term solution for https://crbug.com/1440085.
|
8639
|
+
# See https://docs.google.com/document/d/12HVmFxYj5Jc-eJr5OmWsa2bqTJsbgGLKI6ZIyx0_wpA
|
8640
|
+
# for more details.
|
8641
|
+
#
|
8642
|
+
# TODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets.
|
8643
|
+
experimental command setPrerenderingAllowed
|
8644
|
+
parameters
|
8645
|
+
boolean isAllowed
|
8646
|
+
|
8634
8647
|
domain Performance
|
8635
8648
|
|
8636
8649
|
# Run-time execution metric.
|
@@ -11036,6 +11049,7 @@ experimental domain Preload
|
|
11036
11049
|
SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation
|
11037
11050
|
MemoryPressureOnTrigger
|
11038
11051
|
MemoryPressureAfterTriggered
|
11052
|
+
PrerenderingDisabledByDevTools
|
11039
11053
|
|
11040
11054
|
# Fired when a prerender attempt is completed.
|
11041
11055
|
event prerenderAttemptCompleted
|
package/pdl/js_protocol.pdl
CHANGED
@@ -1443,7 +1443,7 @@ domain Runtime
|
|
1443
1443
|
# resulting `objectId` is still provided.
|
1444
1444
|
deprecated optional boolean generateWebDriverValue
|
1445
1445
|
# Specifies the result serialization. If provided, overrides
|
1446
|
-
# `returnByValue` and `generateWebDriverValue`.
|
1446
|
+
# `generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
1447
1447
|
experimental optional SerializationOptions serializationOptions
|
1448
1448
|
|
1449
1449
|
returns
|
@@ -1538,7 +1538,7 @@ domain Runtime
|
|
1538
1538
|
# resulting `objectId` is still provided.
|
1539
1539
|
deprecated optional boolean generateWebDriverValue
|
1540
1540
|
# Specifies the result serialization. If provided, overrides
|
1541
|
-
# `returnByValue` and `generateWebDriverValue`.
|
1541
|
+
# `generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
1542
1542
|
experimental optional SerializationOptions serializationOptions
|
1543
1543
|
returns
|
1544
1544
|
# Evaluation result.
|
@@ -3914,6 +3914,19 @@ export namespace ProtocolMapping {
|
|
3914
3914
|
paramsType: [Protocol.Page.SetInterceptFileChooserDialogRequest];
|
3915
3915
|
returnType: void;
|
3916
3916
|
};
|
3917
|
+
/**
|
3918
|
+
* Enable/disable prerendering manually.
|
3919
|
+
*
|
3920
|
+
* This command is a short-term solution for https://crbug.com/1440085.
|
3921
|
+
* See https://docs.google.com/document/d/12HVmFxYj5Jc-eJr5OmWsa2bqTJsbgGLKI6ZIyx0_wpA
|
3922
|
+
* for more details.
|
3923
|
+
*
|
3924
|
+
* TODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets.
|
3925
|
+
*/
|
3926
|
+
'Page.setPrerenderingAllowed': {
|
3927
|
+
paramsType: [Protocol.Page.SetPrerenderingAllowedRequest];
|
3928
|
+
returnType: void;
|
3929
|
+
};
|
3917
3930
|
/**
|
3918
3931
|
* Disable collecting and reporting metrics.
|
3919
3932
|
*/
|
@@ -2991,6 +2991,17 @@ export namespace ProtocolProxyApi {
|
|
2991
2991
|
*/
|
2992
2992
|
setInterceptFileChooserDialog(params: Protocol.Page.SetInterceptFileChooserDialogRequest): Promise<void>;
|
2993
2993
|
|
2994
|
+
/**
|
2995
|
+
* Enable/disable prerendering manually.
|
2996
|
+
*
|
2997
|
+
* This command is a short-term solution for https://crbug.com/1440085.
|
2998
|
+
* See https://docs.google.com/document/d/12HVmFxYj5Jc-eJr5OmWsa2bqTJsbgGLKI6ZIyx0_wpA
|
2999
|
+
* for more details.
|
3000
|
+
*
|
3001
|
+
* TODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets.
|
3002
|
+
*/
|
3003
|
+
setPrerenderingAllowed(params: Protocol.Page.SetPrerenderingAllowedRequest): Promise<void>;
|
3004
|
+
|
2994
3005
|
on(event: 'domContentEventFired', listener: (params: Protocol.Page.DomContentEventFiredEvent) => void): void;
|
2995
3006
|
|
2996
3007
|
/**
|
package/types/protocol.d.ts
CHANGED
@@ -2153,7 +2153,7 @@ export namespace Protocol {
|
|
2153
2153
|
generateWebDriverValue?: boolean;
|
2154
2154
|
/**
|
2155
2155
|
* Specifies the result serialization. If provided, overrides
|
2156
|
-
* `returnByValue` and `generateWebDriverValue`.
|
2156
|
+
* `generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
2157
2157
|
*/
|
2158
2158
|
serializationOptions?: SerializationOptions;
|
2159
2159
|
}
|
@@ -2288,7 +2288,7 @@ export namespace Protocol {
|
|
2288
2288
|
generateWebDriverValue?: boolean;
|
2289
2289
|
/**
|
2290
2290
|
* Specifies the result serialization. If provided, overrides
|
2291
|
-
* `returnByValue` and `generateWebDriverValue`.
|
2291
|
+
* `generatePreview`, `returnByValue` and `generateWebDriverValue`.
|
2292
2292
|
*/
|
2293
2293
|
serializationOptions?: SerializationOptions;
|
2294
2294
|
}
|
@@ -3520,7 +3520,7 @@ export namespace Protocol {
|
|
3520
3520
|
* third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
3521
3521
|
* all cases except for success.
|
3522
3522
|
*/
|
3523
|
-
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' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure');
|
3523
|
+
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' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked');
|
3524
3524
|
|
3525
3525
|
/**
|
3526
3526
|
* This issue tracks client hints related issues. It's used to deprecate old
|
@@ -13058,7 +13058,7 @@ export namespace Protocol {
|
|
13058
13058
|
/**
|
13059
13059
|
* List of not restored reasons for back-forward cache.
|
13060
13060
|
*/
|
13061
|
-
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' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | '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' | 'AuthorizationHeader' | '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');
|
13061
|
+
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' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | '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' | 'AuthorizationHeader' | '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');
|
13062
13062
|
|
13063
13063
|
/**
|
13064
13064
|
* Types of not restored reasons for back-forward cache.
|
@@ -13817,6 +13817,10 @@ export namespace Protocol {
|
|
13817
13817
|
enabled: boolean;
|
13818
13818
|
}
|
13819
13819
|
|
13820
|
+
export interface SetPrerenderingAllowedRequest {
|
13821
|
+
isAllowed: boolean;
|
13822
|
+
}
|
13823
|
+
|
13820
13824
|
export interface DomContentEventFiredEvent {
|
13821
13825
|
timestamp: Network.MonotonicTime;
|
13822
13826
|
}
|
@@ -17209,7 +17213,7 @@ export namespace Protocol {
|
|
17209
17213
|
/**
|
17210
17214
|
* List of FinalStatus reasons for Prerender2.
|
17211
17215
|
*/
|
17212
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered');
|
17216
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirectInInitialNavigation' | 'CrossSiteNavigationInInitialNavigation' | 'SameSiteCrossOriginRedirectNotOptInInInitialNavigation' | 'SameSiteCrossOriginNavigationNotOptInInInitialNavigation' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled' | 'ActivatedDuringMainFrameNavigation' | 'PreloadingUnsupportedByWebContents' | 'CrossSiteRedirectInMainFrameNavigation' | 'CrossSiteNavigationInMainFrameNavigation' | 'SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation' | 'SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation' | 'MemoryPressureOnTrigger' | 'MemoryPressureAfterTriggered' | 'PrerenderingDisabledByDevTools');
|
17213
17217
|
|
17214
17218
|
/**
|
17215
17219
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|