devtools-protocol 0.0.1334619 → 0.0.1336433

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.
@@ -2177,12 +2177,25 @@
2177
2177
  },
2178
2178
  {
2179
2179
  "domain": "Extensions",
2180
- "description": "Defines commands and events for browser extensions. Available if the client\nis connected using the --remote-debugging-pipe flag and\nthe --enable-unsafe-extension-debugging flag is set.",
2180
+ "description": "Defines commands and events for browser extensions.",
2181
2181
  "experimental": true,
2182
+ "types": [
2183
+ {
2184
+ "id": "StorageArea",
2185
+ "description": "Storage areas.",
2186
+ "type": "string",
2187
+ "enum": [
2188
+ "session",
2189
+ "local",
2190
+ "sync",
2191
+ "managed"
2192
+ ]
2193
+ }
2194
+ ],
2182
2195
  "commands": [
2183
2196
  {
2184
2197
  "name": "loadUnpacked",
2185
- "description": "Installs an unpacked extension from the filesystem similar to\n--load-extension CLI flags. Returns extension ID once the extension\nhas been installed.",
2198
+ "description": "Installs an unpacked extension from the filesystem similar to\n--load-extension CLI flags. Returns extension ID once the extension\nhas been installed. Available if the client is connected using the\n--remote-debugging-pipe flag and the --enable-unsafe-extension-debugging\nflag is set.",
2186
2199
  "parameters": [
2187
2200
  {
2188
2201
  "name": "path",
@@ -2197,6 +2210,37 @@
2197
2210
  "type": "string"
2198
2211
  }
2199
2212
  ]
2213
+ },
2214
+ {
2215
+ "name": "getStorageItems",
2216
+ "description": "Gets data from extension storage in the given `area`. If `keys` is\nspecified, these are used to filter the result.",
2217
+ "parameters": [
2218
+ {
2219
+ "name": "id",
2220
+ "description": "ID of extension.",
2221
+ "type": "string"
2222
+ },
2223
+ {
2224
+ "name": "storageArea",
2225
+ "description": "StorageArea to retrieve data from.",
2226
+ "$ref": "StorageArea"
2227
+ },
2228
+ {
2229
+ "name": "keys",
2230
+ "description": "Keys to retrieve.",
2231
+ "optional": true,
2232
+ "type": "array",
2233
+ "items": {
2234
+ "type": "string"
2235
+ }
2236
+ }
2237
+ ],
2238
+ "returns": [
2239
+ {
2240
+ "name": "data",
2241
+ "type": "object"
2242
+ }
2243
+ ]
2200
2244
  }
2201
2245
  ]
2202
2246
  },
@@ -4171,26 +4215,6 @@
4171
4215
  }
4172
4216
  ]
4173
4217
  },
4174
- {
4175
- "id": "CSSPositionFallbackRule",
4176
- "description": "CSS position-fallback rule representation.",
4177
- "deprecated": true,
4178
- "type": "object",
4179
- "properties": [
4180
- {
4181
- "name": "name",
4182
- "$ref": "Value"
4183
- },
4184
- {
4185
- "name": "tryRules",
4186
- "description": "List of keyframes.",
4187
- "type": "array",
4188
- "items": {
4189
- "$ref": "CSSTryRule"
4190
- }
4191
- }
4192
- ]
4193
- },
4194
4218
  {
4195
4219
  "id": "CSSPositionTryRule",
4196
4220
  "description": "CSS @position-try rule representation.",
@@ -4619,16 +4643,6 @@
4619
4643
  "$ref": "CSSKeyframesRule"
4620
4644
  }
4621
4645
  },
4622
- {
4623
- "name": "cssPositionFallbackRules",
4624
- "description": "A list of CSS position fallbacks matching this node.",
4625
- "deprecated": true,
4626
- "optional": true,
4627
- "type": "array",
4628
- "items": {
4629
- "$ref": "CSSPositionFallbackRule"
4630
- }
4631
- },
4632
4646
  {
4633
4647
  "name": "cssPositionTryRules",
4634
4648
  "description": "A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.",
@@ -16978,6 +16992,7 @@
16978
16992
  "type": "string",
16979
16993
  "enum": [
16980
16994
  "accelerometer",
16995
+ "all-screens-capture",
16981
16996
  "ambient-light-sensor",
16982
16997
  "attribution-reporting",
16983
16998
  "autoplay",
@@ -26025,7 +26040,8 @@
26025
26040
  "JavaScriptInterfaceRemoved",
26026
26041
  "AllPrerenderingCanceled",
26027
26042
  "WindowClosed",
26028
- "SlowNetwork"
26043
+ "SlowNetwork",
26044
+ "OtherPrerenderedPageActivated"
26029
26045
  ]
26030
26046
  },
26031
26047
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1334619",
3
+ "version": "0.0.1336433",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1102,13 +1102,20 @@ experimental domain Audits
1102
1102
  parameters
1103
1103
  InspectorIssue issue
1104
1104
 
1105
- # Defines commands and events for browser extensions. Available if the client
1106
- # is connected using the --remote-debugging-pipe flag and
1107
- # the --enable-unsafe-extension-debugging flag is set.
1105
+ # Defines commands and events for browser extensions.
1108
1106
  experimental domain Extensions
1107
+ # Storage areas.
1108
+ type StorageArea extends string
1109
+ enum
1110
+ session
1111
+ local
1112
+ sync
1113
+ managed
1109
1114
  # Installs an unpacked extension from the filesystem similar to
1110
1115
  # --load-extension CLI flags. Returns extension ID once the extension
1111
- # has been installed.
1116
+ # has been installed. Available if the client is connected using the
1117
+ # --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
1118
+ # flag is set.
1112
1119
  command loadUnpacked
1113
1120
  parameters
1114
1121
  # Absolute file path.
@@ -1116,6 +1123,18 @@ experimental domain Extensions
1116
1123
  returns
1117
1124
  # Extension id.
1118
1125
  string id
1126
+ # Gets data from extension storage in the given `area`. If `keys` is
1127
+ # specified, these are used to filter the result.
1128
+ command getStorageItems
1129
+ parameters
1130
+ # ID of extension.
1131
+ string id
1132
+ # StorageArea to retrieve data from.
1133
+ StorageArea storageArea
1134
+ # Keys to retrieve.
1135
+ optional array of string keys
1136
+ returns
1137
+ object data
1119
1138
 
1120
1139
  # Defines commands and events for Autofill.
1121
1140
  experimental domain Autofill
@@ -2011,13 +2030,6 @@ experimental domain CSS
2011
2030
  # Associated style declaration.
2012
2031
  CSSStyle style
2013
2032
 
2014
- # CSS position-fallback rule representation.
2015
- deprecated type CSSPositionFallbackRule extends object
2016
- properties
2017
- Value name
2018
- # List of keyframes.
2019
- array of CSSTryRule tryRules
2020
-
2021
2033
  # CSS @position-try rule representation.
2022
2034
  type CSSPositionTryRule extends object
2023
2035
  properties
@@ -2204,8 +2216,6 @@ experimental domain CSS
2204
2216
  optional array of InheritedPseudoElementMatches inheritedPseudoElements
2205
2217
  # A list of CSS keyframed animations matching this node.
2206
2218
  optional array of CSSKeyframesRule cssKeyframesRules
2207
- # A list of CSS position fallbacks matching this node.
2208
- deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2209
2219
  # A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
2210
2220
  optional array of CSSPositionTryRule cssPositionTryRules
2211
2221
  # Index of the active fallback in the applied position-try-fallback property,
@@ -7964,6 +7974,7 @@ domain Page
7964
7974
  experimental type PermissionsPolicyFeature extends string
7965
7975
  enum
7966
7976
  accelerometer
7977
+ all-screens-capture
7967
7978
  ambient-light-sensor
7968
7979
  attribution-reporting
7969
7980
  autoplay
@@ -12285,6 +12296,7 @@ experimental domain Preload
12285
12296
  AllPrerenderingCanceled
12286
12297
  WindowClosed
12287
12298
  SlowNetwork
12299
+ OtherPrerenderedPageActivated
12288
12300
 
12289
12301
  # Fired when a preload enabled state is updated.
12290
12302
  event preloadEnabledStateUpdated
@@ -1509,12 +1509,22 @@ export namespace ProtocolMapping {
1509
1509
  /**
1510
1510
  * Installs an unpacked extension from the filesystem similar to
1511
1511
  * --load-extension CLI flags. Returns extension ID once the extension
1512
- * has been installed.
1512
+ * has been installed. Available if the client is connected using the
1513
+ * --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
1514
+ * flag is set.
1513
1515
  */
1514
1516
  'Extensions.loadUnpacked': {
1515
1517
  paramsType: [Protocol.Extensions.LoadUnpackedRequest];
1516
1518
  returnType: Protocol.Extensions.LoadUnpackedResponse;
1517
1519
  };
1520
+ /**
1521
+ * Gets data from extension storage in the given `area`. If `keys` is
1522
+ * specified, these are used to filter the result.
1523
+ */
1524
+ 'Extensions.getStorageItems': {
1525
+ paramsType: [Protocol.Extensions.GetStorageItemsRequest];
1526
+ returnType: Protocol.Extensions.GetStorageItemsResponse;
1527
+ };
1518
1528
  /**
1519
1529
  * Trigger autofill on a form identified by the fieldId.
1520
1530
  * If the field and related form cannot be autofilled, returns an error.
@@ -813,10 +813,18 @@ export namespace ProtocolProxyApi {
813
813
  /**
814
814
  * Installs an unpacked extension from the filesystem similar to
815
815
  * --load-extension CLI flags. Returns extension ID once the extension
816
- * has been installed.
816
+ * has been installed. Available if the client is connected using the
817
+ * --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
818
+ * flag is set.
817
819
  */
818
820
  loadUnpacked(params: Protocol.Extensions.LoadUnpackedRequest): Promise<Protocol.Extensions.LoadUnpackedResponse>;
819
821
 
822
+ /**
823
+ * Gets data from extension storage in the given `area`. If `keys` is
824
+ * specified, these are used to filter the result.
825
+ */
826
+ getStorageItems(params: Protocol.Extensions.GetStorageItemsRequest): Promise<Protocol.Extensions.GetStorageItemsResponse>;
827
+
820
828
  }
821
829
 
822
830
  export interface AutofillApi {
@@ -871,10 +871,18 @@ export namespace ProtocolTestsProxyApi {
871
871
  /**
872
872
  * Installs an unpacked extension from the filesystem similar to
873
873
  * --load-extension CLI flags. Returns extension ID once the extension
874
- * has been installed.
874
+ * has been installed. Available if the client is connected using the
875
+ * --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
876
+ * flag is set.
875
877
  */
876
878
  loadUnpacked(params: Protocol.Extensions.LoadUnpackedRequest): Promise<{id: number, result: Protocol.Extensions.LoadUnpackedResponse, sessionId: string}>;
877
879
 
880
+ /**
881
+ * Gets data from extension storage in the given `area`. If `keys` is
882
+ * specified, these are used to filter the result.
883
+ */
884
+ getStorageItems(params: Protocol.Extensions.GetStorageItemsRequest): Promise<{id: number, result: Protocol.Extensions.GetStorageItemsResponse, sessionId: string}>;
885
+
878
886
  }
879
887
 
880
888
  export interface AutofillApi {
@@ -3766,12 +3766,15 @@ export namespace Protocol {
3766
3766
  }
3767
3767
 
3768
3768
  /**
3769
- * Defines commands and events for browser extensions. Available if the client
3770
- * is connected using the --remote-debugging-pipe flag and
3771
- * the --enable-unsafe-extension-debugging flag is set.
3769
+ * Defines commands and events for browser extensions.
3772
3770
  */
3773
3771
  export namespace Extensions {
3774
3772
 
3773
+ /**
3774
+ * Storage areas.
3775
+ */
3776
+ export type StorageArea = ('session' | 'local' | 'sync' | 'managed');
3777
+
3775
3778
  export interface LoadUnpackedRequest {
3776
3779
  /**
3777
3780
  * Absolute file path.
@@ -3785,6 +3788,25 @@ export namespace Protocol {
3785
3788
  */
3786
3789
  id: string;
3787
3790
  }
3791
+
3792
+ export interface GetStorageItemsRequest {
3793
+ /**
3794
+ * ID of extension.
3795
+ */
3796
+ id: string;
3797
+ /**
3798
+ * StorageArea to retrieve data from.
3799
+ */
3800
+ storageArea: StorageArea;
3801
+ /**
3802
+ * Keys to retrieve.
3803
+ */
3804
+ keys?: string[];
3805
+ }
3806
+
3807
+ export interface GetStorageItemsResponse {
3808
+ data: any;
3809
+ }
3788
3810
  }
3789
3811
 
3790
3812
  /**
@@ -5122,17 +5144,6 @@ export namespace Protocol {
5122
5144
  style: CSSStyle;
5123
5145
  }
5124
5146
 
5125
- /**
5126
- * CSS position-fallback rule representation.
5127
- */
5128
- export interface CSSPositionFallbackRule {
5129
- name: Value;
5130
- /**
5131
- * List of keyframes.
5132
- */
5133
- tryRules: CSSTryRule[];
5134
- }
5135
-
5136
5147
  /**
5137
5148
  * CSS @position-try rule representation.
5138
5149
  */
@@ -5418,10 +5429,6 @@ export namespace Protocol {
5418
5429
  * A list of CSS keyframed animations matching this node.
5419
5430
  */
5420
5431
  cssKeyframesRules?: CSSKeyframesRule[];
5421
- /**
5422
- * A list of CSS position fallbacks matching this node.
5423
- */
5424
- cssPositionFallbackRules?: CSSPositionFallbackRule[];
5425
5432
  /**
5426
5433
  * A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
5427
5434
  */
@@ -13324,7 +13331,7 @@ export namespace Protocol {
13324
13331
  * All Permissions Policy features. This enum should match the one defined
13325
13332
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
13326
13333
  */
13327
- 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' | 'digital-credentials-get' | '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' | 'media-playback-while-not-visible' | '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');
13334
+ export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | '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' | 'digital-credentials-get' | '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' | 'media-playback-while-not-visible' | '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');
13328
13335
 
13329
13336
  /**
13330
13337
  * Reason for a permissions policy feature to be disabled.
@@ -18465,7 +18472,7 @@ export namespace Protocol {
18465
18472
  /**
18466
18473
  * List of FinalStatus reasons for Prerender2.
18467
18474
  */
18468
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | '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');
18475
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | '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');
18469
18476
 
18470
18477
  /**
18471
18478
  * Preloading status values, see also PreloadingTriggeringOutcome. This