devtools-protocol 0.0.1092232 → 0.0.1093722
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 +11 -1
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +8 -0
- package/types/protocol.d.ts +14 -2
@@ -1536,7 +1536,8 @@
|
|
1536
1536
|
"enum": [
|
1537
1537
|
"CrossOriginPortalPostMessageError",
|
1538
1538
|
"FormLabelForNameError",
|
1539
|
-
"FormDuplicateIdForInputError"
|
1539
|
+
"FormDuplicateIdForInputError",
|
1540
|
+
"FormInputWithNoLabelError"
|
1540
1541
|
]
|
1541
1542
|
},
|
1542
1543
|
{
|
@@ -1591,6 +1592,7 @@
|
|
1591
1592
|
"NoSysexWebMIDIWithoutPermission",
|
1592
1593
|
"NotificationInsecureOrigin",
|
1593
1594
|
"NotificationPermissionRequestedIframe",
|
1595
|
+
"ObsoleteCreateImageBitmapImageOrientationNone",
|
1594
1596
|
"ObsoleteWebRtcCipherSuite",
|
1595
1597
|
"OpenWebDatabaseInsecureContext",
|
1596
1598
|
"OverflowVisibleOnReplacedElement",
|
@@ -8011,6 +8013,7 @@
|
|
8011
8013
|
"properties": [
|
8012
8014
|
{
|
8013
8015
|
"name": "brands",
|
8016
|
+
"description": "Brands appearing in Sec-CH-UA.",
|
8014
8017
|
"optional": true,
|
8015
8018
|
"type": "array",
|
8016
8019
|
"items": {
|
@@ -8019,6 +8022,7 @@
|
|
8019
8022
|
},
|
8020
8023
|
{
|
8021
8024
|
"name": "fullVersionList",
|
8025
|
+
"description": "Brands appearing in Sec-CH-UA-Full-Version-List.",
|
8022
8026
|
"optional": true,
|
8023
8027
|
"type": "array",
|
8024
8028
|
"items": {
|
@@ -22292,6 +22296,12 @@
|
|
22292
22296
|
"optional": true,
|
22293
22297
|
"type": "boolean"
|
22294
22298
|
},
|
22299
|
+
{
|
22300
|
+
"name": "hasPrf",
|
22301
|
+
"description": "If set to true, the authenticator will support the prf extension.\nhttps://w3c.github.io/webauthn/#prf-extension\nDefaults to false.",
|
22302
|
+
"optional": true,
|
22303
|
+
"type": "boolean"
|
22304
|
+
},
|
22295
22305
|
{
|
22296
22306
|
"name": "automaticPresenceSimulation",
|
22297
22307
|
"description": "If set to true, tests of user presence will succeed immediately.\nOtherwise, they will not be resolved. Defaults to true.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -745,6 +745,7 @@ experimental domain Audits
|
|
745
745
|
CrossOriginPortalPostMessageError
|
746
746
|
FormLabelForNameError
|
747
747
|
FormDuplicateIdForInputError
|
748
|
+
FormInputWithNoLabelError
|
748
749
|
|
749
750
|
# Depending on the concrete errorType, different properties are set.
|
750
751
|
type GenericIssueDetails extends object
|
@@ -782,6 +783,7 @@ experimental domain Audits
|
|
782
783
|
NoSysexWebMIDIWithoutPermission
|
783
784
|
NotificationInsecureOrigin
|
784
785
|
NotificationPermissionRequestedIframe
|
786
|
+
ObsoleteCreateImageBitmapImageOrientationNone
|
785
787
|
ObsoleteWebRtcCipherSuite
|
786
788
|
OpenWebDatabaseInsecureContext
|
787
789
|
OverflowVisibleOnReplacedElement
|
@@ -3680,7 +3682,9 @@ domain Emulation
|
|
3680
3682
|
# Missing optional values will be filled in by the target with what it would normally use.
|
3681
3683
|
experimental type UserAgentMetadata extends object
|
3682
3684
|
properties
|
3685
|
+
# Brands appearing in Sec-CH-UA.
|
3683
3686
|
optional array of UserAgentBrandVersion brands
|
3687
|
+
# Brands appearing in Sec-CH-UA-Full-Version-List.
|
3684
3688
|
optional array of UserAgentBrandVersion fullVersionList
|
3685
3689
|
deprecated optional string fullVersion
|
3686
3690
|
string platform
|
@@ -10549,6 +10553,10 @@ experimental domain WebAuthn
|
|
10549
10553
|
# https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension
|
10550
10554
|
# Defaults to false.
|
10551
10555
|
optional boolean hasMinPinLength
|
10556
|
+
# If set to true, the authenticator will support the prf extension.
|
10557
|
+
# https://w3c.github.io/webauthn/#prf-extension
|
10558
|
+
# Defaults to false.
|
10559
|
+
optional boolean hasPrf
|
10552
10560
|
# If set to true, tests of user presence will succeed immediately.
|
10553
10561
|
# Otherwise, they will not be resolved. Defaults to true.
|
10554
10562
|
optional boolean automaticPresenceSimulation
|
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');
|
3445
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError');
|
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' | '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' | '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.
|
@@ -7507,7 +7507,13 @@ export namespace Protocol {
|
|
7507
7507
|
* Missing optional values will be filled in by the target with what it would normally use.
|
7508
7508
|
*/
|
7509
7509
|
export interface UserAgentMetadata {
|
7510
|
+
/**
|
7511
|
+
* Brands appearing in Sec-CH-UA.
|
7512
|
+
*/
|
7510
7513
|
brands?: UserAgentBrandVersion[];
|
7514
|
+
/**
|
7515
|
+
* Brands appearing in Sec-CH-UA-Full-Version-List.
|
7516
|
+
*/
|
7511
7517
|
fullVersionList?: UserAgentBrandVersion[];
|
7512
7518
|
fullVersion?: string;
|
7513
7519
|
platform: string;
|
@@ -16537,6 +16543,12 @@ export namespace Protocol {
|
|
16537
16543
|
* Defaults to false.
|
16538
16544
|
*/
|
16539
16545
|
hasMinPinLength?: boolean;
|
16546
|
+
/**
|
16547
|
+
* If set to true, the authenticator will support the prf extension.
|
16548
|
+
* https://w3c.github.io/webauthn/#prf-extension
|
16549
|
+
* Defaults to false.
|
16550
|
+
*/
|
16551
|
+
hasPrf?: boolean;
|
16540
16552
|
/**
|
16541
16553
|
* If set to true, tests of user presence will succeed immediately.
|
16542
16554
|
* Otherwise, they will not be resolved. Defaults to true.
|