devtools-protocol 0.0.1090008 → 0.0.1092731
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.
@@ -1535,7 +1535,9 @@
|
|
1535
1535
|
"type": "string",
|
1536
1536
|
"enum": [
|
1537
1537
|
"CrossOriginPortalPostMessageError",
|
1538
|
-
"FormLabelForNameError"
|
1538
|
+
"FormLabelForNameError",
|
1539
|
+
"FormDuplicateIdForInputError",
|
1540
|
+
"FormInputWithNoLabelError"
|
1539
1541
|
]
|
1540
1542
|
},
|
1541
1543
|
{
|
@@ -15392,6 +15394,7 @@
|
|
15392
15394
|
"usb",
|
15393
15395
|
"vertical-scroll",
|
15394
15396
|
"web-share",
|
15397
|
+
"window-management",
|
15395
15398
|
"window-placement",
|
15396
15399
|
"xr-spatial-tracking"
|
15397
15400
|
]
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -744,6 +744,8 @@ experimental domain Audits
|
|
744
744
|
enum
|
745
745
|
CrossOriginPortalPostMessageError
|
746
746
|
FormLabelForNameError
|
747
|
+
FormDuplicateIdForInputError
|
748
|
+
FormInputWithNoLabelError
|
747
749
|
|
748
750
|
# Depending on the concrete errorType, different properties are set.
|
749
751
|
type GenericIssueDetails extends object
|
@@ -7236,6 +7238,8 @@ domain Page
|
|
7236
7238
|
usb
|
7237
7239
|
vertical-scroll
|
7238
7240
|
web-share
|
7241
|
+
# Alias for 'window-placement' (crbug.com/1328581).
|
7242
|
+
window-management
|
7239
7243
|
window-placement
|
7240
7244
|
xr-spatial-tracking
|
7241
7245
|
|
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');
|
3445
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError');
|
3446
3446
|
|
3447
3447
|
/**
|
3448
3448
|
* Depending on the concrete errorType, different properties are set.
|
@@ -12339,7 +12339,7 @@ export namespace Protocol {
|
|
12339
12339
|
* All Permissions Policy features. This enum should match the one defined
|
12340
12340
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12341
12341
|
*/
|
12342
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
|
12342
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12343
12343
|
|
12344
12344
|
/**
|
12345
12345
|
* Reason for a permissions policy feature to be disabled.
|