devtools-protocol 0.0.998277 → 0.0.1000917
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.
@@ -1601,11 +1601,9 @@
|
|
1601
1601
|
"RTCPeerConnectionSdpSemanticsPlanB",
|
1602
1602
|
"RtcpMuxPolicyNegotiate",
|
1603
1603
|
"RTPDataChannel",
|
1604
|
-
"SelectionAddRangeIntersect",
|
1605
1604
|
"SharedArrayBufferConstructedWithoutIsolation",
|
1606
1605
|
"TextToSpeech_DisallowedByAutoplay",
|
1607
1606
|
"V8SharedArrayBufferConstructedInExtensionWithoutIsolation",
|
1608
|
-
"WebCodecsVideoFrameDefaultTimestamp",
|
1609
1607
|
"XHRJSONEncodingDetection",
|
1610
1608
|
"XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload",
|
1611
1609
|
"XRSupportsSession"
|
package/json/js_protocol.json
CHANGED
@@ -1175,7 +1175,7 @@
|
|
1175
1175
|
},
|
1176
1176
|
{
|
1177
1177
|
"name": "hash",
|
1178
|
-
"description": "Content hash of the script.",
|
1178
|
+
"description": "Content hash of the script, SHA-256.",
|
1179
1179
|
"type": "string"
|
1180
1180
|
},
|
1181
1181
|
{
|
@@ -1279,7 +1279,7 @@
|
|
1279
1279
|
},
|
1280
1280
|
{
|
1281
1281
|
"name": "hash",
|
1282
|
-
"description": "Content hash of the script.",
|
1282
|
+
"description": "Content hash of the script, SHA-256.",
|
1283
1283
|
"type": "string"
|
1284
1284
|
},
|
1285
1285
|
{
|
@@ -2893,7 +2893,7 @@
|
|
2893
2893
|
},
|
2894
2894
|
{
|
2895
2895
|
"name": "generateWebDriverValue",
|
2896
|
-
"description": "Whether the result should
|
2896
|
+
"description": "Whether the result should contain `webDriverValue`, serialized according to\nhttps://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but\nresulting `objectId` is still provided.",
|
2897
2897
|
"experimental": true,
|
2898
2898
|
"optional": true,
|
2899
2899
|
"type": "boolean"
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -795,11 +795,9 @@ experimental domain Audits
|
|
795
795
|
RTCPeerConnectionSdpSemanticsPlanB
|
796
796
|
RtcpMuxPolicyNegotiate
|
797
797
|
RTPDataChannel
|
798
|
-
SelectionAddRangeIntersect
|
799
798
|
SharedArrayBufferConstructedWithoutIsolation
|
800
799
|
TextToSpeech_DisallowedByAutoplay
|
801
800
|
V8SharedArrayBufferConstructedInExtensionWithoutIsolation
|
802
|
-
WebCodecsVideoFrameDefaultTimestamp
|
803
801
|
XHRJSONEncodingDetection
|
804
802
|
XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload
|
805
803
|
XRSupportsSession
|
package/pdl/js_protocol.pdl
CHANGED
@@ -559,7 +559,7 @@ domain Debugger
|
|
559
559
|
integer endColumn
|
560
560
|
# Specifies script creation context.
|
561
561
|
Runtime.ExecutionContextId executionContextId
|
562
|
-
# Content hash of the script.
|
562
|
+
# Content hash of the script, SHA-256.
|
563
563
|
string hash
|
564
564
|
# Embedder-specific auxiliary data.
|
565
565
|
optional object executionContextAuxData
|
@@ -598,7 +598,7 @@ domain Debugger
|
|
598
598
|
integer endColumn
|
599
599
|
# Specifies script creation context.
|
600
600
|
Runtime.ExecutionContextId executionContextId
|
601
|
-
# Content hash of the script.
|
601
|
+
# Content hash of the script, SHA-256.
|
602
602
|
string hash
|
603
603
|
# Embedder-specific auxiliary data.
|
604
604
|
optional object executionContextAuxData
|
@@ -1347,7 +1347,9 @@ domain Runtime
|
|
1347
1347
|
optional string objectGroup
|
1348
1348
|
# Whether to throw an exception if side effect cannot be ruled out during evaluation.
|
1349
1349
|
experimental optional boolean throwOnSideEffect
|
1350
|
-
# Whether the result should
|
1350
|
+
# Whether the result should contain `webDriverValue`, serialized according to
|
1351
|
+
# https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
|
1352
|
+
# resulting `objectId` is still provided.
|
1351
1353
|
experimental optional boolean generateWebDriverValue
|
1352
1354
|
returns
|
1353
1355
|
# Call result.
|
package/types/protocol.d.ts
CHANGED
@@ -828,7 +828,7 @@ export namespace Protocol {
|
|
828
828
|
*/
|
829
829
|
executionContextId: Runtime.ExecutionContextId;
|
830
830
|
/**
|
831
|
-
* Content hash of the script.
|
831
|
+
* Content hash of the script, SHA-256.
|
832
832
|
*/
|
833
833
|
hash: string;
|
834
834
|
/**
|
@@ -903,7 +903,7 @@ export namespace Protocol {
|
|
903
903
|
*/
|
904
904
|
executionContextId: Runtime.ExecutionContextId;
|
905
905
|
/**
|
906
|
-
* Content hash of the script.
|
906
|
+
* Content hash of the script, SHA-256.
|
907
907
|
*/
|
908
908
|
hash: string;
|
909
909
|
/**
|
@@ -2042,7 +2042,9 @@ export namespace Protocol {
|
|
2042
2042
|
*/
|
2043
2043
|
throwOnSideEffect?: boolean;
|
2044
2044
|
/**
|
2045
|
-
* Whether the result should
|
2045
|
+
* Whether the result should contain `webDriverValue`, serialized according to
|
2046
|
+
* https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
|
2047
|
+
* resulting `objectId` is still provided.
|
2046
2048
|
*/
|
2047
2049
|
generateWebDriverValue?: boolean;
|
2048
2050
|
}
|
@@ -3376,7 +3378,7 @@ export namespace Protocol {
|
|
3376
3378
|
frameId?: Page.FrameId;
|
3377
3379
|
}
|
3378
3380
|
|
3379
|
-
export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogCpuOveruseDetection' | 'LegacyConstraintGoogIPv6' | 'LegacyConstraintGoogScreencastMinBitrate' | 'LegacyConstraintGoogSuspendBelowMinBitrate' | 'LocalCSSFileExtensionRejected' | 'MediaElementAudioSourceNode' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PaymentRequestShowWithoutGesture' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionLegacyCreateWithMediaConstraints' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | '
|
3381
|
+
export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogCpuOveruseDetection' | 'LegacyConstraintGoogIPv6' | 'LegacyConstraintGoogScreencastMinBitrate' | 'LegacyConstraintGoogSuspendBelowMinBitrate' | 'LocalCSSFileExtensionRejected' | 'MediaElementAudioSourceNode' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PaymentRequestShowWithoutGesture' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionLegacyCreateWithMediaConstraints' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
|
3380
3382
|
|
3381
3383
|
/**
|
3382
3384
|
* This issue tracks information needed to print a deprecation message.
|