devtools-protocol 0.0.1491235 → 0.0.1493946
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.
@@ -4364,6 +4364,12 @@
|
|
4364
4364
|
"description": "true if the query contains scroll-state() queries.",
|
4365
4365
|
"optional": true,
|
4366
4366
|
"type": "boolean"
|
4367
|
+
},
|
4368
|
+
{
|
4369
|
+
"name": "queriesAnchored",
|
4370
|
+
"description": "true if the query contains anchored() queries.",
|
4371
|
+
"optional": true,
|
4372
|
+
"type": "boolean"
|
4367
4373
|
}
|
4368
4374
|
]
|
4369
4375
|
},
|
@@ -7820,7 +7826,7 @@
|
|
7820
7826
|
},
|
7821
7827
|
{
|
7822
7828
|
"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
|
7829
|
+
"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
7830
|
"experimental": true,
|
7825
7831
|
"parameters": [
|
7826
7832
|
{
|
@@ -7846,6 +7852,11 @@
|
|
7846
7852
|
"name": "queriesScrollState",
|
7847
7853
|
"optional": true,
|
7848
7854
|
"type": "boolean"
|
7855
|
+
},
|
7856
|
+
{
|
7857
|
+
"name": "queriesAnchored",
|
7858
|
+
"optional": true,
|
7859
|
+
"type": "boolean"
|
7849
7860
|
}
|
7850
7861
|
],
|
7851
7862
|
"returns": [
|
@@ -27970,7 +27981,8 @@
|
|
27970
27981
|
"OtherPrerenderedPageActivated",
|
27971
27982
|
"V8OptimizerDisabled",
|
27972
27983
|
"PrerenderFailedDuringPrefetch",
|
27973
|
-
"BrowsingDataRemoved"
|
27984
|
+
"BrowsingDataRemoved",
|
27985
|
+
"PrerenderHostReused"
|
27974
27986
|
]
|
27975
27987
|
},
|
27976
27988
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -2134,6 +2134,8 @@ experimental domain CSS
|
|
2134
2134
|
optional DOM.LogicalAxes logicalAxes
|
2135
2135
|
# true if the query contains scroll-state() queries.
|
2136
2136
|
optional boolean queriesScrollState
|
2137
|
+
# true if the query contains anchored() queries.
|
2138
|
+
optional boolean queriesAnchored
|
2137
2139
|
|
2138
2140
|
# CSS Supports at-rule descriptor.
|
2139
2141
|
experimental type CSSSupports extends object
|
@@ -3717,9 +3719,9 @@ domain DOM
|
|
3717
3719
|
|
3718
3720
|
# Returns the query container of the given node based on container query
|
3719
3721
|
# 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.
|
3722
|
+
# scroll-state or anchored elements. If no axes are provided and
|
3723
|
+
# queriesScrollState is false, the style container is returned, which is the
|
3724
|
+
# direct parent or the closest element with a matching container-name.
|
3723
3725
|
experimental command getContainerForNode
|
3724
3726
|
parameters
|
3725
3727
|
NodeId nodeId
|
@@ -3727,6 +3729,7 @@ domain DOM
|
|
3727
3729
|
optional PhysicalAxes physicalAxes
|
3728
3730
|
optional LogicalAxes logicalAxes
|
3729
3731
|
optional boolean queriesScrollState
|
3732
|
+
optional boolean queriesAnchored
|
3730
3733
|
returns
|
3731
3734
|
# The container node for the given node, or null if not found.
|
3732
3735
|
optional NodeId nodeId
|
@@ -13245,6 +13248,7 @@ experimental domain Preload
|
|
13245
13248
|
V8OptimizerDisabled
|
13246
13249
|
PrerenderFailedDuringPrefetch
|
13247
13250
|
BrowsingDataRemoved
|
13251
|
+
PrerenderHostReused
|
13248
13252
|
|
13249
13253
|
# Fired when a preload enabled state is updated.
|
13250
13254
|
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];
|
@@ -1629,9 +1629,9 @@ export namespace ProtocolProxyApi {
|
|
1629
1629
|
/**
|
1630
1630
|
* Returns the query container of the given node based on container query
|
1631
1631
|
* conditions: containerName, physical and logical axes, and whether it queries
|
1632
|
-
* scroll-state. If no axes are provided and
|
1633
|
-
* style container is returned, which is the
|
1634
|
-
* element with a matching container-name.
|
1632
|
+
* scroll-state or anchored elements. If no axes are provided and
|
1633
|
+
* queriesScrollState is false, the style container is returned, which is the
|
1634
|
+
* direct parent or the closest element with a matching container-name.
|
1635
1635
|
*/
|
1636
1636
|
getContainerForNode(params: Protocol.DOM.GetContainerForNodeRequest): Promise<Protocol.DOM.GetContainerForNodeResponse>;
|
1637
1637
|
|
@@ -360,9 +360,9 @@ export namespace ProtocolTestsProxyApi {
|
|
360
360
|
/**
|
361
361
|
* Fired when the virtual machine resumed execution.
|
362
362
|
*/
|
363
|
-
onResumed(listener: (
|
364
|
-
offResumed(listener: (
|
365
|
-
onceResumed(eventMatcher?: (
|
363
|
+
onResumed(listener: () => void): void;
|
364
|
+
offResumed(listener: () => void): void;
|
365
|
+
onceResumed(eventMatcher?: () => boolean): Promise<void>;
|
366
366
|
|
367
367
|
/**
|
368
368
|
* Fired when virtual machine fails to parse the script.
|
@@ -434,9 +434,9 @@ export namespace ProtocolTestsProxyApi {
|
|
434
434
|
offReportHeapSnapshotProgress(listener: (event: { params: Protocol.HeapProfiler.ReportHeapSnapshotProgressEvent }) => void): void;
|
435
435
|
onceReportHeapSnapshotProgress(eventMatcher?: (event: { params: Protocol.HeapProfiler.ReportHeapSnapshotProgressEvent }) => boolean): Promise<{ params: Protocol.HeapProfiler.ReportHeapSnapshotProgressEvent }>;
|
436
436
|
|
437
|
-
onResetProfiles(listener: (
|
438
|
-
offResetProfiles(listener: (
|
439
|
-
onceResetProfiles(eventMatcher?: (
|
437
|
+
onResetProfiles(listener: () => void): void;
|
438
|
+
offResetProfiles(listener: () => void): void;
|
439
|
+
onceResetProfiles(eventMatcher?: () => boolean): Promise<void>;
|
440
440
|
|
441
441
|
}
|
442
442
|
|
@@ -670,9 +670,9 @@ export namespace ProtocolTestsProxyApi {
|
|
670
670
|
/**
|
671
671
|
* Issued when all executionContexts were cleared in browser
|
672
672
|
*/
|
673
|
-
onExecutionContextsCleared(listener: (
|
674
|
-
offExecutionContextsCleared(listener: (
|
675
|
-
onceExecutionContextsCleared(eventMatcher?: (
|
673
|
+
onExecutionContextsCleared(listener: () => void): void;
|
674
|
+
offExecutionContextsCleared(listener: () => void): void;
|
675
|
+
onceExecutionContextsCleared(eventMatcher?: () => boolean): Promise<void>;
|
676
676
|
|
677
677
|
/**
|
678
678
|
* Issued when object should be inspected (for example, as a result of inspect() command line API
|
@@ -1330,9 +1330,9 @@ export namespace ProtocolTestsProxyApi {
|
|
1330
1330
|
* Fires whenever a MediaQuery result changes (for example, after a browser window has been
|
1331
1331
|
* resized.) The current implementation considers only viewport-dependent media features.
|
1332
1332
|
*/
|
1333
|
-
onMediaQueryResultChanged(listener: (
|
1334
|
-
offMediaQueryResultChanged(listener: (
|
1335
|
-
onceMediaQueryResultChanged(eventMatcher?: (
|
1333
|
+
onMediaQueryResultChanged(listener: () => void): void;
|
1334
|
+
offMediaQueryResultChanged(listener: () => void): void;
|
1335
|
+
onceMediaQueryResultChanged(eventMatcher?: () => boolean): Promise<void>;
|
1336
1336
|
|
1337
1337
|
/**
|
1338
1338
|
* Fired whenever an active document stylesheet is added.
|
@@ -1713,9 +1713,9 @@ export namespace ProtocolTestsProxyApi {
|
|
1713
1713
|
/**
|
1714
1714
|
* Returns the query container of the given node based on container query
|
1715
1715
|
* conditions: containerName, physical and logical axes, and whether it queries
|
1716
|
-
* scroll-state. If no axes are provided and
|
1717
|
-
* style container is returned, which is the
|
1718
|
-
* element with a matching container-name.
|
1716
|
+
* scroll-state or anchored elements. If no axes are provided and
|
1717
|
+
* queriesScrollState is false, the style container is returned, which is the
|
1718
|
+
* direct parent or the closest element with a matching container-name.
|
1719
1719
|
*/
|
1720
1720
|
getContainerForNode(params: Protocol.DOM.GetContainerForNodeRequest): Promise<{id: number, result: Protocol.DOM.GetContainerForNodeResponse, sessionId: string}>;
|
1721
1721
|
|
@@ -1789,9 +1789,9 @@ export namespace ProtocolTestsProxyApi {
|
|
1789
1789
|
/**
|
1790
1790
|
* Fired when `Document` has been totally updated. Node ids are no longer valid.
|
1791
1791
|
*/
|
1792
|
-
onDocumentUpdated(listener: (
|
1793
|
-
offDocumentUpdated(listener: (
|
1794
|
-
onceDocumentUpdated(eventMatcher?: (
|
1792
|
+
onDocumentUpdated(listener: () => void): void;
|
1793
|
+
offDocumentUpdated(listener: () => void): void;
|
1794
|
+
onceDocumentUpdated(eventMatcher?: () => boolean): Promise<void>;
|
1795
1795
|
|
1796
1796
|
/**
|
1797
1797
|
* Fired when `Element`'s inline style is modified via a CSS property modification.
|
@@ -1810,9 +1810,9 @@ export namespace ProtocolTestsProxyApi {
|
|
1810
1810
|
/**
|
1811
1811
|
* Called when top layer elements are changed.
|
1812
1812
|
*/
|
1813
|
-
onTopLayerElementsUpdated(listener: (
|
1814
|
-
offTopLayerElementsUpdated(listener: (
|
1815
|
-
onceTopLayerElementsUpdated(eventMatcher?: (
|
1813
|
+
onTopLayerElementsUpdated(listener: () => void): void;
|
1814
|
+
offTopLayerElementsUpdated(listener: () => void): void;
|
1815
|
+
onceTopLayerElementsUpdated(eventMatcher?: () => boolean): Promise<void>;
|
1816
1816
|
|
1817
1817
|
/**
|
1818
1818
|
* Fired when a node's scrollability state changes.
|
@@ -2234,9 +2234,9 @@ export namespace ProtocolTestsProxyApi {
|
|
2234
2234
|
/**
|
2235
2235
|
* Notification sent after the virtual time budget for the current VirtualTimePolicy has run out.
|
2236
2236
|
*/
|
2237
|
-
onVirtualTimeBudgetExpired(listener: (
|
2238
|
-
offVirtualTimeBudgetExpired(listener: (
|
2239
|
-
onceVirtualTimeBudgetExpired(eventMatcher?: (
|
2237
|
+
onVirtualTimeBudgetExpired(listener: () => void): void;
|
2238
|
+
offVirtualTimeBudgetExpired(listener: () => void): void;
|
2239
|
+
onceVirtualTimeBudgetExpired(eventMatcher?: () => boolean): Promise<void>;
|
2240
2240
|
|
2241
2241
|
}
|
2242
2242
|
|
@@ -2433,16 +2433,16 @@ export namespace ProtocolTestsProxyApi {
|
|
2433
2433
|
/**
|
2434
2434
|
* Fired when debugging target has crashed
|
2435
2435
|
*/
|
2436
|
-
onTargetCrashed(listener: (
|
2437
|
-
offTargetCrashed(listener: (
|
2438
|
-
onceTargetCrashed(eventMatcher?: (
|
2436
|
+
onTargetCrashed(listener: () => void): void;
|
2437
|
+
offTargetCrashed(listener: () => void): void;
|
2438
|
+
onceTargetCrashed(eventMatcher?: () => boolean): Promise<void>;
|
2439
2439
|
|
2440
2440
|
/**
|
2441
2441
|
* Fired when debugging target has reloaded after crash
|
2442
2442
|
*/
|
2443
|
-
onTargetReloadedAfterCrash(listener: (
|
2444
|
-
offTargetReloadedAfterCrash(listener: (
|
2445
|
-
onceTargetReloadedAfterCrash(eventMatcher?: (
|
2443
|
+
onTargetReloadedAfterCrash(listener: () => void): void;
|
2444
|
+
offTargetReloadedAfterCrash(listener: () => void): void;
|
2445
|
+
onceTargetReloadedAfterCrash(eventMatcher?: () => boolean): Promise<void>;
|
2446
2446
|
|
2447
2447
|
}
|
2448
2448
|
|
@@ -3056,9 +3056,9 @@ export namespace ProtocolTestsProxyApi {
|
|
3056
3056
|
/**
|
3057
3057
|
* Fired once security policy has been updated.
|
3058
3058
|
*/
|
3059
|
-
onPolicyUpdated(listener: (
|
3060
|
-
offPolicyUpdated(listener: (
|
3061
|
-
oncePolicyUpdated(eventMatcher?: (
|
3059
|
+
onPolicyUpdated(listener: () => void): void;
|
3060
|
+
offPolicyUpdated(listener: () => void): void;
|
3061
|
+
oncePolicyUpdated(eventMatcher?: () => boolean): Promise<void>;
|
3062
3062
|
|
3063
3063
|
/**
|
3064
3064
|
* Fired once when parsing the .wbn file has succeeded.
|
@@ -3273,9 +3273,9 @@ export namespace ProtocolTestsProxyApi {
|
|
3273
3273
|
/**
|
3274
3274
|
* Fired when user cancels the inspect mode.
|
3275
3275
|
*/
|
3276
|
-
onInspectModeCanceled(listener: (
|
3277
|
-
offInspectModeCanceled(listener: (
|
3278
|
-
onceInspectModeCanceled(eventMatcher?: (
|
3276
|
+
onInspectModeCanceled(listener: () => void): void;
|
3277
|
+
offInspectModeCanceled(listener: () => void): void;
|
3278
|
+
onceInspectModeCanceled(eventMatcher?: () => boolean): Promise<void>;
|
3279
3279
|
|
3280
3280
|
}
|
3281
3281
|
|
@@ -3655,9 +3655,9 @@ export namespace ProtocolTestsProxyApi {
|
|
3655
3655
|
offDocumentOpened(listener: (event: { params: Protocol.Page.DocumentOpenedEvent }) => void): void;
|
3656
3656
|
onceDocumentOpened(eventMatcher?: (event: { params: Protocol.Page.DocumentOpenedEvent }) => boolean): Promise<{ params: Protocol.Page.DocumentOpenedEvent }>;
|
3657
3657
|
|
3658
|
-
onFrameResized(listener: (
|
3659
|
-
offFrameResized(listener: (
|
3660
|
-
onceFrameResized(eventMatcher?: (
|
3658
|
+
onFrameResized(listener: () => void): void;
|
3659
|
+
offFrameResized(listener: () => void): void;
|
3660
|
+
onceFrameResized(eventMatcher?: () => boolean): Promise<void>;
|
3661
3661
|
|
3662
3662
|
/**
|
3663
3663
|
* Fired when a navigation starts. This event is fired for both
|
@@ -3720,16 +3720,16 @@ export namespace ProtocolTestsProxyApi {
|
|
3720
3720
|
/**
|
3721
3721
|
* Fired when interstitial page was hidden
|
3722
3722
|
*/
|
3723
|
-
onInterstitialHidden(listener: (
|
3724
|
-
offInterstitialHidden(listener: (
|
3725
|
-
onceInterstitialHidden(eventMatcher?: (
|
3723
|
+
onInterstitialHidden(listener: () => void): void;
|
3724
|
+
offInterstitialHidden(listener: () => void): void;
|
3725
|
+
onceInterstitialHidden(eventMatcher?: () => boolean): Promise<void>;
|
3726
3726
|
|
3727
3727
|
/**
|
3728
3728
|
* Fired when interstitial page was shown
|
3729
3729
|
*/
|
3730
|
-
onInterstitialShown(listener: (
|
3731
|
-
offInterstitialShown(listener: (
|
3732
|
-
onceInterstitialShown(eventMatcher?: (
|
3730
|
+
onInterstitialShown(listener: () => void): void;
|
3731
|
+
offInterstitialShown(listener: () => void): void;
|
3732
|
+
onceInterstitialShown(eventMatcher?: () => boolean): Promise<void>;
|
3733
3733
|
|
3734
3734
|
/**
|
3735
3735
|
* Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) has been
|
package/types/protocol.d.ts
CHANGED
@@ -5184,6 +5184,10 @@ export namespace Protocol {
|
|
5184
5184
|
* true if the query contains scroll-state() queries.
|
5185
5185
|
*/
|
5186
5186
|
queriesScrollState?: boolean;
|
5187
|
+
/**
|
5188
|
+
* true if the query contains anchored() queries.
|
5189
|
+
*/
|
5190
|
+
queriesAnchored?: boolean;
|
5187
5191
|
}
|
5188
5192
|
|
5189
5193
|
/**
|
@@ -7394,6 +7398,7 @@ export namespace Protocol {
|
|
7394
7398
|
physicalAxes?: PhysicalAxes;
|
7395
7399
|
logicalAxes?: LogicalAxes;
|
7396
7400
|
queriesScrollState?: boolean;
|
7401
|
+
queriesAnchored?: boolean;
|
7397
7402
|
}
|
7398
7403
|
|
7399
7404
|
export interface GetContainerForNodeResponse {
|
@@ -19626,7 +19631,7 @@ export namespace Protocol {
|
|
19626
19631
|
/**
|
19627
19632
|
* List of FinalStatus reasons for Prerender2.
|
19628
19633
|
*/
|
19629
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | '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' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl' | 'JavaScriptInterfaceAdded' | 'JavaScriptInterfaceRemoved' | 'AllPrerenderingCanceled' | 'WindowClosed' | 'SlowNetwork' | 'OtherPrerenderedPageActivated' | 'V8OptimizerDisabled' | 'PrerenderFailedDuringPrefetch' | 'BrowsingDataRemoved');
|
19634
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'MemoryLimitExceeded' | 'DataSaverEnabled' | 'TriggerUrlHasEffectiveUrl' | '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' | 'SpeculationRuleRemoved' | 'ActivatedWithAuxiliaryBrowsingContexts' | 'MaxNumOfRunningEagerPrerendersExceeded' | 'MaxNumOfRunningNonEagerPrerendersExceeded' | 'MaxNumOfRunningEmbedderPrerendersExceeded' | 'PrerenderingUrlHasEffectiveUrl' | 'RedirectedPrerenderingUrlHasEffectiveUrl' | 'ActivationUrlHasEffectiveUrl' | 'JavaScriptInterfaceAdded' | 'JavaScriptInterfaceRemoved' | 'AllPrerenderingCanceled' | 'WindowClosed' | 'SlowNetwork' | 'OtherPrerenderedPageActivated' | 'V8OptimizerDisabled' | 'PrerenderFailedDuringPrefetch' | 'BrowsingDataRemoved' | 'PrerenderHostReused');
|
19630
19635
|
|
19631
19636
|
/**
|
19632
19637
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|