devtools-protocol 0.0.1026613 → 0.0.1027117
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`.",
|
@@ -1578,6 +1584,7 @@
|
|
1578
1584
|
"NotificationPermissionRequestedIframe",
|
1579
1585
|
"ObsoleteWebRtcCipherSuite",
|
1580
1586
|
"OpenWebDatabaseInsecureContext",
|
1587
|
+
"OverflowVisibleOnReplacedElement",
|
1581
1588
|
"PictureSourceSrc",
|
1582
1589
|
"PrefixedCancelAnimationFrame",
|
1583
1590
|
"PrefixedRequestAnimationFrame",
|
@@ -19115,6 +19122,22 @@
|
|
19115
19122
|
}
|
19116
19123
|
]
|
19117
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
|
+
},
|
19118
19141
|
{
|
19119
19142
|
"name": "getCookies",
|
19120
19143
|
"description": "Returns all browser cookies.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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`.
|
@@ -772,6 +774,7 @@ experimental domain Audits
|
|
772
774
|
NotificationPermissionRequestedIframe
|
773
775
|
ObsoleteWebRtcCipherSuite
|
774
776
|
OpenWebDatabaseInsecureContext
|
777
|
+
OverflowVisibleOnReplacedElement
|
775
778
|
PictureSourceSrc
|
776
779
|
PrefixedCancelAnimationFrame
|
777
780
|
PrefixedRequestAnimationFrame
|
@@ -2682,7 +2685,7 @@ domain DOM
|
|
2682
2685
|
array of NodeId nodeIds
|
2683
2686
|
|
2684
2687
|
# Returns NodeIds of current top layer elements.
|
2685
|
-
# 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
|
2686
2689
|
# appear on top of all other content.
|
2687
2690
|
experimental command getTopLayerElements
|
2688
2691
|
returns
|
@@ -8990,6 +8993,14 @@ experimental domain Storage
|
|
8990
8993
|
# Comma separated list of StorageType to clear.
|
8991
8994
|
string storageTypes
|
8992
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
|
+
|
8993
9004
|
# Returns all browser cookies.
|
8994
9005
|
command getCookies
|
8995
9006
|
parameters
|
@@ -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
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -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' | 'NavigateEventRestoreScroll' | 'NavigateEventTransitionWhile' | '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.
|