devtools-protocol 0.0.1096618 → 0.0.1097787
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.
- package/json/browser_protocol.json +18 -2
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +9 -0
- package/types/protocol.d.ts +12 -3
@@ -1538,7 +1538,8 @@
|
|
1538
1538
|
"FormLabelForNameError",
|
1539
1539
|
"FormDuplicateIdForInputError",
|
1540
1540
|
"FormInputWithNoLabelError",
|
1541
|
-
"FormAutocompleteAttributeEmptyError"
|
1541
|
+
"FormAutocompleteAttributeEmptyError",
|
1542
|
+
"FormEmptyIdAndNameAttributesForInputError"
|
1542
1543
|
]
|
1543
1544
|
},
|
1544
1545
|
{
|
@@ -1610,6 +1611,7 @@
|
|
1610
1611
|
"PrefixedVideoExitFullscreen",
|
1611
1612
|
"PrefixedVideoExitFullScreen",
|
1612
1613
|
"PrefixedVideoSupportsFullscreen",
|
1614
|
+
"PrivacySandboxExtensionsAPI",
|
1613
1615
|
"RangeExpand",
|
1614
1616
|
"RequestedSubresourceWithEmbeddedCredentials",
|
1615
1617
|
"RTCConstraintEnableDtlsSrtpFalse",
|
@@ -13929,6 +13931,18 @@
|
|
13929
13931
|
"description": "Raw response header text as it was received over the wire. The raw text may not always be\navailable, such as in the case of HTTP/2 or QUIC.",
|
13930
13932
|
"optional": true,
|
13931
13933
|
"type": "string"
|
13934
|
+
},
|
13935
|
+
{
|
13936
|
+
"name": "cookiePartitionKey",
|
13937
|
+
"description": "The cookie partition key that will be used to store partitioned cookies set in this response.\nOnly sent when partitioned cookies are enabled.",
|
13938
|
+
"optional": true,
|
13939
|
+
"type": "string"
|
13940
|
+
},
|
13941
|
+
{
|
13942
|
+
"name": "cookiePartitionKeyOpaque",
|
13943
|
+
"description": "True if partitioned cookies are enabled, but the partition key is not serializeable to string.",
|
13944
|
+
"optional": true,
|
13945
|
+
"type": "boolean"
|
13932
13946
|
}
|
13933
13947
|
]
|
13934
13948
|
},
|
@@ -16461,7 +16475,9 @@
|
|
16461
16475
|
"TabClosedWithoutUserGesture",
|
16462
16476
|
"PrimaryMainFrameRendererProcessCrashed",
|
16463
16477
|
"PrimaryMainFrameRendererProcessKilled",
|
16464
|
-
"ActivationFramePolicyNotCompatible"
|
16478
|
+
"ActivationFramePolicyNotCompatible",
|
16479
|
+
"PreloadingDisabled",
|
16480
|
+
"BatterySaverEnabled"
|
16465
16481
|
]
|
16466
16482
|
}
|
16467
16483
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -747,6 +747,7 @@ experimental domain Audits
|
|
747
747
|
FormDuplicateIdForInputError
|
748
748
|
FormInputWithNoLabelError
|
749
749
|
FormAutocompleteAttributeEmptyError
|
750
|
+
FormEmptyIdAndNameAttributesForInputError
|
750
751
|
|
751
752
|
# Depending on the concrete errorType, different properties are set.
|
752
753
|
type GenericIssueDetails extends object
|
@@ -801,6 +802,7 @@ experimental domain Audits
|
|
801
802
|
PrefixedVideoExitFullscreen
|
802
803
|
PrefixedVideoExitFullScreen
|
803
804
|
PrefixedVideoSupportsFullscreen
|
805
|
+
PrivacySandboxExtensionsAPI
|
804
806
|
RangeExpand
|
805
807
|
RequestedSubresourceWithEmbeddedCredentials
|
806
808
|
RTCConstraintEnableDtlsSrtpFalse
|
@@ -6400,6 +6402,11 @@ domain Network
|
|
6400
6402
|
# Raw response header text as it was received over the wire. The raw text may not always be
|
6401
6403
|
# available, such as in the case of HTTP/2 or QUIC.
|
6402
6404
|
optional string headersText
|
6405
|
+
# The cookie partition key that will be used to store partitioned cookies set in this response.
|
6406
|
+
# Only sent when partitioned cookies are enabled.
|
6407
|
+
optional string cookiePartitionKey
|
6408
|
+
# True if partitioned cookies are enabled, but the partition key is not serializeable to string.
|
6409
|
+
optional boolean cookiePartitionKeyOpaque
|
6403
6410
|
|
6404
6411
|
# Fired exactly once for each Trust Token operation. Depending on
|
6405
6412
|
# the type of the operation and whether the operation succeeded or
|
@@ -8573,6 +8580,8 @@ domain Page
|
|
8573
8580
|
PrimaryMainFrameRendererProcessCrashed
|
8574
8581
|
PrimaryMainFrameRendererProcessKilled
|
8575
8582
|
ActivationFramePolicyNotCompatible
|
8583
|
+
PreloadingDisabled
|
8584
|
+
BatterySaverEnabled
|
8576
8585
|
|
8577
8586
|
# Fired when a prerender attempt is completed.
|
8578
8587
|
experimental event prerenderAttemptCompleted
|
package/types/protocol.d.ts
CHANGED
@@ -3442,7 +3442,7 @@ export namespace Protocol {
|
|
3442
3442
|
location?: SourceCodeLocation;
|
3443
3443
|
}
|
3444
3444
|
|
3445
|
-
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError');
|
3445
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError');
|
3446
3446
|
|
3447
3447
|
/**
|
3448
3448
|
* Depending on the concrete errorType, different properties are set.
|
@@ -3456,7 +3456,7 @@ export namespace Protocol {
|
|
3456
3456
|
violatingNodeId?: DOM.BackendNodeId;
|
3457
3457
|
}
|
3458
3458
|
|
3459
|
-
export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'ExpectCTHeader' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'IdentityInCanMakePaymentEvent' | 'InsecurePrivateNetworkSubresourceRequest' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteCreateImageBitmapImageOrientationNone' | 'ObsoleteWebRtcCipherSuite' | 'OpenWebDatabaseInsecureContext' | 'OverflowVisibleOnReplacedElement' | 'PaymentInstruments' | 'PaymentRequestCSPViolation' | 'PersistentQuotaType' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
|
3459
|
+
export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'ExpectCTHeader' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'IdentityInCanMakePaymentEvent' | 'InsecurePrivateNetworkSubresourceRequest' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteCreateImageBitmapImageOrientationNone' | 'ObsoleteWebRtcCipherSuite' | 'OpenWebDatabaseInsecureContext' | 'OverflowVisibleOnReplacedElement' | 'PaymentInstruments' | 'PaymentRequestCSPViolation' | 'PersistentQuotaType' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'PrivacySandboxExtensionsAPI' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
|
3460
3460
|
|
3461
3461
|
/**
|
3462
3462
|
* This issue tracks information needed to print a deprecation message.
|
@@ -11437,6 +11437,15 @@ export namespace Protocol {
|
|
11437
11437
|
* available, such as in the case of HTTP/2 or QUIC.
|
11438
11438
|
*/
|
11439
11439
|
headersText?: string;
|
11440
|
+
/**
|
11441
|
+
* The cookie partition key that will be used to store partitioned cookies set in this response.
|
11442
|
+
* Only sent when partitioned cookies are enabled.
|
11443
|
+
*/
|
11444
|
+
cookiePartitionKey?: string;
|
11445
|
+
/**
|
11446
|
+
* True if partitioned cookies are enabled, but the partition key is not serializeable to string.
|
11447
|
+
*/
|
11448
|
+
cookiePartitionKeyOpaque?: boolean;
|
11440
11449
|
}
|
11441
11450
|
|
11442
11451
|
export const enum TrustTokenOperationDoneEventStatus {
|
@@ -12886,7 +12895,7 @@ export namespace Protocol {
|
|
12886
12895
|
/**
|
12887
12896
|
* List of FinalStatus reasons for Prerender2.
|
12888
12897
|
*/
|
12889
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible');
|
12898
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground' | 'EmbedderHostDisallowed' | 'ActivationNavigationDestroyedBeforeSuccess' | 'TabClosedByUserGesture' | 'TabClosedWithoutUserGesture' | 'PrimaryMainFrameRendererProcessCrashed' | 'PrimaryMainFrameRendererProcessKilled' | 'ActivationFramePolicyNotCompatible' | 'PreloadingDisabled' | 'BatterySaverEnabled');
|
12890
12899
|
|
12891
12900
|
export interface AddScriptToEvaluateOnLoadRequest {
|
12892
12901
|
scriptSource: string;
|