devtools-protocol 0.0.1026105 → 0.0.1027518

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.
@@ -281,6 +281,12 @@
281
281
  "optional": true,
282
282
  "$ref": "AXValue"
283
283
  },
284
+ {
285
+ "name": "chromeRole",
286
+ "description": "This `Node`'s Chrome raw role.",
287
+ "optional": true,
288
+ "$ref": "AXValue"
289
+ },
284
290
  {
285
291
  "name": "name",
286
292
  "description": "The accessible name for this `Node`.",
@@ -1571,11 +1577,14 @@
1571
1577
  "LocalCSSFileExtensionRejected",
1572
1578
  "MediaSourceAbortRemove",
1573
1579
  "MediaSourceDurationTruncatingBuffered",
1580
+ "NavigateEventRestoreScroll",
1581
+ "NavigateEventTransitionWhile",
1574
1582
  "NoSysexWebMIDIWithoutPermission",
1575
1583
  "NotificationInsecureOrigin",
1576
1584
  "NotificationPermissionRequestedIframe",
1577
1585
  "ObsoleteWebRtcCipherSuite",
1578
1586
  "OpenWebDatabaseInsecureContext",
1587
+ "OverflowVisibleOnReplacedElement",
1579
1588
  "PictureSourceSrc",
1580
1589
  "PrefixedCancelAnimationFrame",
1581
1590
  "PrefixedRequestAnimationFrame",
@@ -19113,6 +19122,22 @@
19113
19122
  }
19114
19123
  ]
19115
19124
  },
19125
+ {
19126
+ "name": "clearDataForStorageKey",
19127
+ "description": "Clears storage for storage key.",
19128
+ "parameters": [
19129
+ {
19130
+ "name": "storageKey",
19131
+ "description": "Storage key.",
19132
+ "type": "string"
19133
+ },
19134
+ {
19135
+ "name": "storageTypes",
19136
+ "description": "Comma separated list of StorageType to clear.",
19137
+ "type": "string"
19138
+ }
19139
+ ]
19140
+ },
19116
19141
  {
19117
19142
  "name": "getCookies",
19118
19143
  "description": "Returns all browser cookies.",
@@ -589,7 +589,7 @@
589
589
  },
590
590
  {
591
591
  "name": "functionBodyOffsets",
592
- "description": "The offsets of all function bodies plus one additional entry pointing\none by past the end of the last function.",
592
+ "description": "The offsets of all function bodies, in the format [start1, end1,\nstart2, end2, ...] where all ends are exclusive.",
593
593
  "type": "array",
594
594
  "items": {
595
595
  "type": "integer"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1026105",
3
+ "version": "0.0.1027518",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -168,6 +168,8 @@ experimental domain Accessibility
168
168
  optional array of AXProperty ignoredReasons
169
169
  # This `Node`'s role, whether explicit or implicit.
170
170
  optional AXValue role
171
+ # This `Node`'s Chrome raw role.
172
+ optional AXValue chromeRole
171
173
  # The accessible name for this `Node`.
172
174
  optional AXValue name
173
175
  # The accessible description for this `Node`.
@@ -765,11 +767,14 @@ experimental domain Audits
765
767
  LocalCSSFileExtensionRejected
766
768
  MediaSourceAbortRemove
767
769
  MediaSourceDurationTruncatingBuffered
770
+ NavigateEventRestoreScroll
771
+ NavigateEventTransitionWhile
768
772
  NoSysexWebMIDIWithoutPermission
769
773
  NotificationInsecureOrigin
770
774
  NotificationPermissionRequestedIframe
771
775
  ObsoleteWebRtcCipherSuite
772
776
  OpenWebDatabaseInsecureContext
777
+ OverflowVisibleOnReplacedElement
773
778
  PictureSourceSrc
774
779
  PrefixedCancelAnimationFrame
775
780
  PrefixedRequestAnimationFrame
@@ -2680,7 +2685,7 @@ domain DOM
2680
2685
  array of NodeId nodeIds
2681
2686
 
2682
2687
  # Returns NodeIds of current top layer elements.
2683
- # Top layer is rendered closest to the user within a viewport, therefore its elements always
2688
+ # Top layer is rendered closest to the user within a viewport, therefore its elements always
2684
2689
  # appear on top of all other content.
2685
2690
  experimental command getTopLayerElements
2686
2691
  returns
@@ -8988,6 +8993,14 @@ experimental domain Storage
8988
8993
  # Comma separated list of StorageType to clear.
8989
8994
  string storageTypes
8990
8995
 
8996
+ # Clears storage for storage key.
8997
+ command clearDataForStorageKey
8998
+ parameters
8999
+ # Storage key.
9000
+ string storageKey
9001
+ # Comma separated list of StorageType to clear.
9002
+ string storageTypes
9003
+
8991
9004
  # Returns all browser cookies.
8992
9005
  command getCookies
8993
9006
  parameters
@@ -261,8 +261,8 @@ domain Debugger
261
261
  optional string streamId
262
262
  # The total number of lines in the disassembly text.
263
263
  integer totalNumberOfLines
264
- # The offsets of all function bodies plus one additional entry pointing
265
- # one by past the end of the last function.
264
+ # The offsets of all function bodies, in the format [start1, end1,
265
+ # start2, end2, ...] where all ends are exclusive.
266
266
  array of integer functionBodyOffsets
267
267
  # The first chunk of disassembly.
268
268
  WasmDisassemblyChunk chunk
@@ -3996,6 +3996,13 @@ export namespace ProtocolMapping {
3996
3996
  paramsType: [Protocol.Storage.ClearDataForOriginRequest];
3997
3997
  returnType: void;
3998
3998
  };
3999
+ /**
4000
+ * Clears storage for storage key.
4001
+ */
4002
+ 'Storage.clearDataForStorageKey': {
4003
+ paramsType: [Protocol.Storage.ClearDataForStorageKeyRequest];
4004
+ returnType: void;
4005
+ };
3999
4006
  /**
4000
4007
  * Returns all browser cookies.
4001
4008
  */
@@ -3244,6 +3244,11 @@ export namespace ProtocolProxyApi {
3244
3244
  */
3245
3245
  clearDataForOrigin(params: Protocol.Storage.ClearDataForOriginRequest): Promise<void>;
3246
3246
 
3247
+ /**
3248
+ * Clears storage for storage key.
3249
+ */
3250
+ clearDataForStorageKey(params: Protocol.Storage.ClearDataForStorageKeyRequest): Promise<void>;
3251
+
3247
3252
  /**
3248
3253
  * Returns all browser cookies.
3249
3254
  */
@@ -433,8 +433,8 @@ export namespace Protocol {
433
433
  */
434
434
  totalNumberOfLines: integer;
435
435
  /**
436
- * The offsets of all function bodies plus one additional entry pointing
437
- * one by past the end of the last function.
436
+ * The offsets of all function bodies, in the format [start1, end1,
437
+ * start2, end2, ...] where all ends are exclusive.
438
438
  */
439
439
  functionBodyOffsets: integer[];
440
440
  /**
@@ -2777,6 +2777,10 @@ export namespace Protocol {
2777
2777
  * This `Node`'s role, whether explicit or implicit.
2778
2778
  */
2779
2779
  role?: AXValue;
2780
+ /**
2781
+ * This `Node`'s Chrome raw role.
2782
+ */
2783
+ chromeRole?: AXValue;
2780
2784
  /**
2781
2785
  * The accessible name for this `Node`.
2782
2786
  */
@@ -3467,7 +3471,7 @@ export namespace Protocol {
3467
3471
  frameId?: Page.FrameId;
3468
3472
  }
3469
3473
 
3470
- export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'ExpectCTHeader' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'IdentityInCanMakePaymentEvent' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogIPv6' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'OpenWebDatabaseInsecureContext' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3474
+ export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'ExpectCTHeader' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'IdentityInCanMakePaymentEvent' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogIPv6' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NavigateEventRestoreScroll' | 'NavigateEventTransitionWhile' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'OpenWebDatabaseInsecureContext' | 'OverflowVisibleOnReplacedElement' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3471
3475
 
3472
3476
  /**
3473
3477
  * This issue tracks information needed to print a deprecation message.
@@ -14554,6 +14558,17 @@ export namespace Protocol {
14554
14558
  storageTypes: string;
14555
14559
  }
14556
14560
 
14561
+ export interface ClearDataForStorageKeyRequest {
14562
+ /**
14563
+ * Storage key.
14564
+ */
14565
+ storageKey: string;
14566
+ /**
14567
+ * Comma separated list of StorageType to clear.
14568
+ */
14569
+ storageTypes: string;
14570
+ }
14571
+
14557
14572
  export interface GetCookiesRequest {
14558
14573
  /**
14559
14574
  * Browser context to use when called on the browser endpoint.