devtools-protocol 0.0.1512837 → 0.0.1515189

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.
@@ -207,7 +207,7 @@
207
207
  },
208
208
  {
209
209
  "id": "AXPropertyName",
210
- "description": "Values of AXProperty name:\n- from 'busy' to 'roledescription': states which apply to every AX node\n- from 'live' to 'root': attributes which apply to nodes in live regions\n- from 'autocomplete' to 'valuetext': attributes which apply to widgets\n- from 'checked' to 'selected': states which apply to widgets\n- from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.",
210
+ "description": "Values of AXProperty name:\n- from 'busy' to 'roledescription': states which apply to every AX node\n- from 'live' to 'root': attributes which apply to nodes in live regions\n- from 'autocomplete' to 'valuetext': attributes which apply to widgets\n- from 'checked' to 'selected': states which apply to widgets\n- from 'activedescendant' to 'owns': relationships between elements other than parent/child/sibling\n- from 'activeFullscreenElement' to 'uninteresting': reasons why this noode is hidden",
211
211
  "type": "string",
212
212
  "enum": [
213
213
  "actions",
@@ -250,7 +250,24 @@
250
250
  "flowto",
251
251
  "labelledby",
252
252
  "owns",
253
- "url"
253
+ "url",
254
+ "activeFullscreenElement",
255
+ "activeModalDialog",
256
+ "activeAriaModalDialog",
257
+ "ariaHiddenElement",
258
+ "ariaHiddenSubtree",
259
+ "emptyAlt",
260
+ "emptyText",
261
+ "inertElement",
262
+ "inertSubtree",
263
+ "labelContainer",
264
+ "labelFor",
265
+ "notRendered",
266
+ "notVisible",
267
+ "presentationalRole",
268
+ "probablyPresentational",
269
+ "inactiveCarouselTabContent",
270
+ "uninteresting"
254
271
  ]
255
272
  },
256
273
  {
@@ -7004,6 +7021,12 @@
7004
7021
  "experimental": true,
7005
7022
  "optional": true,
7006
7023
  "type": "boolean"
7024
+ },
7025
+ {
7026
+ "name": "affectedByStartingStyles",
7027
+ "experimental": true,
7028
+ "optional": true,
7029
+ "type": "boolean"
7007
7030
  }
7008
7031
  ]
7009
7032
  },
@@ -8537,6 +8560,23 @@
8537
8560
  }
8538
8561
  ]
8539
8562
  },
8563
+ {
8564
+ "name": "affectedByStartingStylesFlagUpdated",
8565
+ "description": "Fired when a node's starting styles changes.",
8566
+ "experimental": true,
8567
+ "parameters": [
8568
+ {
8569
+ "name": "nodeId",
8570
+ "description": "The id of the node.",
8571
+ "$ref": "DOM.NodeId"
8572
+ },
8573
+ {
8574
+ "name": "affectedByStartingStyles",
8575
+ "description": "If the node has starting styles.",
8576
+ "type": "boolean"
8577
+ }
8578
+ ]
8579
+ },
8540
8580
  {
8541
8581
  "name": "pseudoElementRemoved",
8542
8582
  "description": "Called when a pseudo element is removed from an element.",
@@ -12818,7 +12858,8 @@
12818
12858
  },
12819
12859
  {
12820
12860
  "name": "indexName",
12821
- "description": "Index name, empty string for object store data requests.",
12861
+ "description": "Index name. If not specified, it performs an object store data request.",
12862
+ "optional": true,
12822
12863
  "type": "string"
12823
12864
  },
12824
12865
  {
@@ -21725,8 +21766,10 @@
21725
21766
  "WebXR",
21726
21767
  "SharedWorker",
21727
21768
  "SharedWorkerMessage",
21769
+ "SharedWorkerWithNoActiveClient",
21728
21770
  "WebLocks",
21729
21771
  "WebHID",
21772
+ "WebBluetooth",
21730
21773
  "WebShare",
21731
21774
  "RequestedStorageAccessGrant",
21732
21775
  "WebNfc",
@@ -1694,6 +1694,12 @@
1694
1694
  "optional": true,
1695
1695
  "type": "number"
1696
1696
  },
1697
+ {
1698
+ "name": "stackDepth",
1699
+ "description": "Maximum stack depth. The default value is 128.",
1700
+ "optional": true,
1701
+ "type": "number"
1702
+ },
1697
1703
  {
1698
1704
  "name": "includeObjectsCollectedByMajorGC",
1699
1705
  "description": "By default, the sampling heap profiler reports only objects which are\nstill alive when the profile is returned via getSamplingProfile or\nstopSampling, which is useful for determining what functions contribute\nthe most to steady-state memory usage. This flag instructs the sampling\nheap profiler to also include information about objects discarded by\nmajor GC, which will show which functions cause large temporary memory\nusage or long GC pauses.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1512837",
3
+ "version": "0.0.1515189",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -110,7 +110,8 @@ experimental domain Accessibility
110
110
  # - from 'live' to 'root': attributes which apply to nodes in live regions
111
111
  # - from 'autocomplete' to 'valuetext': attributes which apply to widgets
112
112
  # - from 'checked' to 'selected': states which apply to widgets
113
- # - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
113
+ # - from 'activedescendant' to 'owns': relationships between elements other than parent/child/sibling
114
+ # - from 'activeFullscreenElement' to 'uninteresting': reasons why this noode is hidden
114
115
  type AXPropertyName extends string
115
116
  enum
116
117
  actions
@@ -154,6 +155,25 @@ experimental domain Accessibility
154
155
  labelledby
155
156
  owns
156
157
  url
158
+ # LINT.IfChange(AXIgnoredReason)
159
+ activeFullscreenElement
160
+ activeModalDialog
161
+ activeAriaModalDialog
162
+ ariaHiddenElement
163
+ ariaHiddenSubtree
164
+ emptyAlt
165
+ emptyText
166
+ inertElement
167
+ inertSubtree
168
+ labelContainer
169
+ labelFor
170
+ notRendered
171
+ notVisible
172
+ presentationalRole
173
+ probablyPresentational
174
+ inactiveCarouselTabContent
175
+ uninteresting
176
+ # LINT.ThenChange(//third_party/blink/renderer/modules/accessibility/ax_enums.cc:AXIgnoredReason)
157
177
 
158
178
  # A node in the accessibility tree.
159
179
  type AXNode extends object
@@ -177,6 +177,7 @@ domain DOM
177
177
  optional CompatibilityMode compatibilityMode
178
178
  optional BackendNode assignedSlot
179
179
  experimental optional boolean isScrollable
180
+ experimental optional boolean affectedByStartingStyles
180
181
 
181
182
  # A structure to hold the top-level node of a detached tree and an array of its retained descendants.
182
183
  type DetachedElementInfo extends object
@@ -898,6 +899,14 @@ domain DOM
898
899
  # If the node is scrollable.
899
900
  boolean isScrollable
900
901
 
902
+ # Fired when a node's starting styles changes.
903
+ experimental event affectedByStartingStylesFlagUpdated
904
+ parameters
905
+ # The id of the node.
906
+ DOM.NodeId nodeId
907
+ # If the node has starting styles.
908
+ boolean affectedByStartingStyles
909
+
901
910
  # Called when a pseudo element is removed from an element.
902
911
  experimental event pseudoElementRemoved
903
912
  parameters
@@ -159,8 +159,8 @@ experimental domain IndexedDB
159
159
  string databaseName
160
160
  # Object store name.
161
161
  string objectStoreName
162
- # Index name, empty string for object store data requests.
163
- string indexName
162
+ # Index name. If not specified, it performs an object store data request.
163
+ optional string indexName
164
164
  # Number of records to skip.
165
165
  integer skipCount
166
166
  # Number of records to fetch.
@@ -1577,8 +1577,10 @@ domain Page
1577
1577
  WebXR
1578
1578
  SharedWorker
1579
1579
  SharedWorkerMessage
1580
+ SharedWorkerWithNoActiveClient
1580
1581
  WebLocks
1581
1582
  WebHID
1583
+ WebBluetooth
1582
1584
  WebShare
1583
1585
  RequestedStorageAccessGrant
1584
1586
  WebNfc
@@ -794,6 +794,8 @@ experimental domain HeapProfiler
794
794
  # Average sample interval in bytes. Poisson distribution is used for the intervals. The
795
795
  # default value is 32768 bytes.
796
796
  optional number samplingInterval
797
+ # Maximum stack depth. The default value is 128.
798
+ optional number stackDepth
797
799
  # By default, the sampling heap profiler reports only objects which are
798
800
  # still alive when the profile is returned via getSamplingProfile or
799
801
  # stopSampling, which is useful for determining what functions contribute
@@ -253,6 +253,11 @@ export namespace ProtocolMapping {
253
253
  * @experimental
254
254
  */
255
255
  'DOM.scrollableFlagUpdated': [Protocol.DOM.ScrollableFlagUpdatedEvent];
256
+ /**
257
+ * Fired when a node's starting styles changes.
258
+ * @experimental
259
+ */
260
+ 'DOM.affectedByStartingStylesFlagUpdated': [Protocol.DOM.AffectedByStartingStylesFlagUpdatedEvent];
256
261
  /**
257
262
  * Called when a pseudo element is removed from an element.
258
263
  * @experimental
@@ -1887,6 +1887,12 @@ export namespace ProtocolProxyApi {
1887
1887
  */
1888
1888
  on(event: 'scrollableFlagUpdated', listener: (params: Protocol.DOM.ScrollableFlagUpdatedEvent) => void): void;
1889
1889
 
1890
+ /**
1891
+ * Fired when a node's starting styles changes.
1892
+ * @experimental
1893
+ */
1894
+ on(event: 'affectedByStartingStylesFlagUpdated', listener: (params: Protocol.DOM.AffectedByStartingStylesFlagUpdatedEvent) => void): void;
1895
+
1890
1896
  /**
1891
1897
  * Called when a pseudo element is removed from an element.
1892
1898
  * @experimental
@@ -2001,6 +2001,14 @@ export namespace ProtocolTestsProxyApi {
2001
2001
  offScrollableFlagUpdated(listener: (event: { params: Protocol.DOM.ScrollableFlagUpdatedEvent }) => void): void;
2002
2002
  onceScrollableFlagUpdated(eventMatcher?: (event: { params: Protocol.DOM.ScrollableFlagUpdatedEvent }) => boolean): Promise<{ params: Protocol.DOM.ScrollableFlagUpdatedEvent }>;
2003
2003
 
2004
+ /**
2005
+ * Fired when a node's starting styles changes.
2006
+ * @experimental
2007
+ */
2008
+ onAffectedByStartingStylesFlagUpdated(listener: (event: { params: Protocol.DOM.AffectedByStartingStylesFlagUpdatedEvent }) => void): void;
2009
+ offAffectedByStartingStylesFlagUpdated(listener: (event: { params: Protocol.DOM.AffectedByStartingStylesFlagUpdatedEvent }) => void): void;
2010
+ onceAffectedByStartingStylesFlagUpdated(eventMatcher?: (event: { params: Protocol.DOM.AffectedByStartingStylesFlagUpdatedEvent }) => boolean): Promise<{ params: Protocol.DOM.AffectedByStartingStylesFlagUpdatedEvent }>;
2011
+
2004
2012
  /**
2005
2013
  * Called when a pseudo element is removed from an element.
2006
2014
  * @experimental
@@ -1211,6 +1211,10 @@ export namespace Protocol {
1211
1211
  * default value is 32768 bytes.
1212
1212
  */
1213
1213
  samplingInterval?: number;
1214
+ /**
1215
+ * Maximum stack depth. The default value is 128.
1216
+ */
1217
+ stackDepth?: number;
1214
1218
  /**
1215
1219
  * By default, the sampling heap profiler reports only objects which are
1216
1220
  * still alive when the profile is returned via getSamplingProfile or
@@ -2901,9 +2905,10 @@ export namespace Protocol {
2901
2905
  * - from 'live' to 'root': attributes which apply to nodes in live regions
2902
2906
  * - from 'autocomplete' to 'valuetext': attributes which apply to widgets
2903
2907
  * - from 'checked' to 'selected': states which apply to widgets
2904
- * - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
2908
+ * - from 'activedescendant' to 'owns': relationships between elements other than parent/child/sibling
2909
+ * - from 'activeFullscreenElement' to 'uninteresting': reasons why this noode is hidden
2905
2910
  */
2906
- export type AXPropertyName = ('actions' | 'busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns' | 'url');
2911
+ export type AXPropertyName = ('actions' | 'busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns' | 'url' | 'activeFullscreenElement' | 'activeModalDialog' | 'activeAriaModalDialog' | 'ariaHiddenElement' | 'ariaHiddenSubtree' | 'emptyAlt' | 'emptyText' | 'inertElement' | 'inertSubtree' | 'labelContainer' | 'labelFor' | 'notRendered' | 'notVisible' | 'presentationalRole' | 'probablyPresentational' | 'inactiveCarouselTabContent' | 'uninteresting');
2907
2912
 
2908
2913
  /**
2909
2914
  * A node in the accessibility tree.
@@ -6896,6 +6901,10 @@ export namespace Protocol {
6896
6901
  * @experimental
6897
6902
  */
6898
6903
  isScrollable?: boolean;
6904
+ /**
6905
+ * @experimental
6906
+ */
6907
+ affectedByStartingStyles?: boolean;
6899
6908
  }
6900
6909
 
6901
6910
  /**
@@ -7945,6 +7954,21 @@ export namespace Protocol {
7945
7954
  isScrollable: boolean;
7946
7955
  }
7947
7956
 
7957
+ /**
7958
+ * Fired when a node's starting styles changes.
7959
+ * @experimental
7960
+ */
7961
+ export interface AffectedByStartingStylesFlagUpdatedEvent {
7962
+ /**
7963
+ * The id of the node.
7964
+ */
7965
+ nodeId: DOM.NodeId;
7966
+ /**
7967
+ * If the node has starting styles.
7968
+ */
7969
+ affectedByStartingStyles: boolean;
7970
+ }
7971
+
7948
7972
  /**
7949
7973
  * Called when a pseudo element is removed from an element.
7950
7974
  * @experimental
@@ -10635,9 +10659,9 @@ export namespace Protocol {
10635
10659
  */
10636
10660
  objectStoreName: string;
10637
10661
  /**
10638
- * Index name, empty string for object store data requests.
10662
+ * Index name. If not specified, it performs an object store data request.
10639
10663
  */
10640
- indexName: string;
10664
+ indexName?: string;
10641
10665
  /**
10642
10666
  * Number of records to skip.
10643
10667
  */
@@ -16448,7 +16472,7 @@ export namespace Protocol {
16448
16472
  * List of not restored reasons for back-forward cache.
16449
16473
  * @experimental
16450
16474
  */
16451
- 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' | 'SharedWorkerMessage' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
16475
+ 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' | 'SharedWorkerMessage' | 'SharedWorkerWithNoActiveClient' | 'WebLocks' | 'WebHID' | 'WebBluetooth' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'KeepaliveRequest' | 'IndexedDBEvent' | 'Dummy' | 'JsNetworkRequestReceivedCacheControlNoStoreResource' | 'WebRTCUsedWithCCNS' | 'WebTransportUsedWithCCNS' | 'WebSocketUsedWithCCNS' | 'SmartCard' | 'LiveMediaStreamTrack' | 'UnloadHandler' | 'ParserAborted' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'ContentDiscarded' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame' | 'RequestedByWebViewClient' | 'PostMessageByWebViewClient' | 'CacheControlNoStoreDeviceBoundSessionTerminated' | 'CacheLimitPrunedOnModerateMemoryPressure' | 'CacheLimitPrunedOnCriticalMemoryPressure');
16452
16476
 
16453
16477
  /**
16454
16478
  * Types of not restored reasons for back-forward cache.