devtools-protocol 0.0.1097235 → 0.0.1098258
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
@@ -1539,7 +1539,8 @@
|
|
1539
1539
|
"FormDuplicateIdForInputError",
|
1540
1540
|
"FormInputWithNoLabelError",
|
1541
1541
|
"FormAutocompleteAttributeEmptyError",
|
1542
|
-
"FormEmptyIdAndNameAttributesForInputError"
|
1542
|
+
"FormEmptyIdAndNameAttributesForInputError",
|
1543
|
+
"FormAriaLabelledByToNonExistingId"
|
1543
1544
|
]
|
1544
1545
|
},
|
1545
1546
|
{
|
@@ -1611,6 +1612,7 @@
|
|
1611
1612
|
"PrefixedVideoExitFullscreen",
|
1612
1613
|
"PrefixedVideoExitFullScreen",
|
1613
1614
|
"PrefixedVideoSupportsFullscreen",
|
1615
|
+
"PrivacySandboxExtensionsAPI",
|
1614
1616
|
"RangeExpand",
|
1615
1617
|
"RequestedSubresourceWithEmbeddedCredentials",
|
1616
1618
|
"RTCConstraintEnableDtlsSrtpFalse",
|
@@ -13930,6 +13932,18 @@
|
|
13930
13932
|
"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.",
|
13931
13933
|
"optional": true,
|
13932
13934
|
"type": "string"
|
13935
|
+
},
|
13936
|
+
{
|
13937
|
+
"name": "cookiePartitionKey",
|
13938
|
+
"description": "The cookie partition key that will be used to store partitioned cookies set in this response.\nOnly sent when partitioned cookies are enabled.",
|
13939
|
+
"optional": true,
|
13940
|
+
"type": "string"
|
13941
|
+
},
|
13942
|
+
{
|
13943
|
+
"name": "cookiePartitionKeyOpaque",
|
13944
|
+
"description": "True if partitioned cookies are enabled, but the partition key is not serializeable to string.",
|
13945
|
+
"optional": true,
|
13946
|
+
"type": "boolean"
|
13933
13947
|
}
|
13934
13948
|
]
|
13935
13949
|
},
|
@@ -16462,7 +16476,9 @@
|
|
16462
16476
|
"TabClosedWithoutUserGesture",
|
16463
16477
|
"PrimaryMainFrameRendererProcessCrashed",
|
16464
16478
|
"PrimaryMainFrameRendererProcessKilled",
|
16465
|
-
"ActivationFramePolicyNotCompatible"
|
16479
|
+
"ActivationFramePolicyNotCompatible",
|
16480
|
+
"PreloadingDisabled",
|
16481
|
+
"BatterySaverEnabled"
|
16466
16482
|
]
|
16467
16483
|
}
|
16468
16484
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -748,6 +748,7 @@ experimental domain Audits
|
|
748
748
|
FormInputWithNoLabelError
|
749
749
|
FormAutocompleteAttributeEmptyError
|
750
750
|
FormEmptyIdAndNameAttributesForInputError
|
751
|
+
FormAriaLabelledByToNonExistingId
|
751
752
|
|
752
753
|
# Depending on the concrete errorType, different properties are set.
|
753
754
|
type GenericIssueDetails extends object
|
@@ -802,6 +803,7 @@ experimental domain Audits
|
|
802
803
|
PrefixedVideoExitFullscreen
|
803
804
|
PrefixedVideoExitFullScreen
|
804
805
|
PrefixedVideoSupportsFullscreen
|
806
|
+
PrivacySandboxExtensionsAPI
|
805
807
|
RangeExpand
|
806
808
|
RequestedSubresourceWithEmbeddedCredentials
|
807
809
|
RTCConstraintEnableDtlsSrtpFalse
|
@@ -6401,6 +6403,11 @@ domain Network
|
|
6401
6403
|
# Raw response header text as it was received over the wire. The raw text may not always be
|
6402
6404
|
# available, such as in the case of HTTP/2 or QUIC.
|
6403
6405
|
optional string headersText
|
6406
|
+
# The cookie partition key that will be used to store partitioned cookies set in this response.
|
6407
|
+
# Only sent when partitioned cookies are enabled.
|
6408
|
+
optional string cookiePartitionKey
|
6409
|
+
# True if partitioned cookies are enabled, but the partition key is not serializeable to string.
|
6410
|
+
optional boolean cookiePartitionKeyOpaque
|
6404
6411
|
|
6405
6412
|
# Fired exactly once for each Trust Token operation. Depending on
|
6406
6413
|
# the type of the operation and whether the operation succeeded or
|
@@ -8574,6 +8581,8 @@ domain Page
|
|
8574
8581
|
PrimaryMainFrameRendererProcessCrashed
|
8575
8582
|
PrimaryMainFrameRendererProcessKilled
|
8576
8583
|
ActivationFramePolicyNotCompatible
|
8584
|
+
PreloadingDisabled
|
8585
|
+
BatterySaverEnabled
|
8577
8586
|
|
8578
8587
|
# Fired when a prerender attempt is completed.
|
8579
8588
|
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' | 'FormEmptyIdAndNameAttributesForInputError');
|
3445
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId');
|
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;
|