devtools-protocol 0.0.1349977 → 0.0.1352404
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.
@@ -5680,7 +5680,13 @@
|
|
5680
5680
|
"view-transition-group",
|
5681
5681
|
"view-transition-image-pair",
|
5682
5682
|
"view-transition-old",
|
5683
|
-
"view-transition-new"
|
5683
|
+
"view-transition-new",
|
5684
|
+
"placeholder",
|
5685
|
+
"file-selector-button",
|
5686
|
+
"details-content",
|
5687
|
+
"select-fallback-button",
|
5688
|
+
"select-fallback-button-text",
|
5689
|
+
"picker"
|
5684
5690
|
]
|
5685
5691
|
},
|
5686
5692
|
{
|
@@ -13507,7 +13513,6 @@
|
|
13507
13513
|
"EnterprisePolicy",
|
13508
13514
|
"StorageAccess",
|
13509
13515
|
"TopLevelStorageAccess",
|
13510
|
-
"CorsOptIn",
|
13511
13516
|
"Scheme"
|
13512
13517
|
]
|
13513
13518
|
},
|
@@ -17181,6 +17186,7 @@
|
|
17181
17186
|
"clipboard-read",
|
17182
17187
|
"clipboard-write",
|
17183
17188
|
"compute-pressure",
|
17189
|
+
"controlled-frame",
|
17184
17190
|
"cross-origin-isolated",
|
17185
17191
|
"deferred-fetch",
|
17186
17192
|
"digital-credentials-get",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -2703,6 +2703,12 @@ domain DOM
|
|
2703
2703
|
view-transition-image-pair
|
2704
2704
|
view-transition-old
|
2705
2705
|
view-transition-new
|
2706
|
+
placeholder
|
2707
|
+
file-selector-button
|
2708
|
+
details-content
|
2709
|
+
select-fallback-button
|
2710
|
+
select-fallback-button-text
|
2711
|
+
picker
|
2706
2712
|
|
2707
2713
|
# Shadow root type.
|
2708
2714
|
type ShadowRootType extends string
|
@@ -6379,8 +6385,6 @@ domain Network
|
|
6379
6385
|
StorageAccess
|
6380
6386
|
# The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
|
6381
6387
|
TopLevelStorageAccess
|
6382
|
-
# The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
|
6383
|
-
CorsOptIn
|
6384
6388
|
# The cookie should have been blocked by 3PCD but is exempted by the first-party URL scheme.
|
6385
6389
|
Scheme
|
6386
6390
|
|
@@ -8079,6 +8083,7 @@ domain Page
|
|
8079
8083
|
clipboard-read
|
8080
8084
|
clipboard-write
|
8081
8085
|
compute-pressure
|
8086
|
+
controlled-frame
|
8082
8087
|
cross-origin-isolated
|
8083
8088
|
deferred-fetch
|
8084
8089
|
digital-credentials-get
|
package/types/protocol.d.ts
CHANGED
@@ -6017,7 +6017,7 @@ export namespace Protocol {
|
|
6017
6017
|
/**
|
6018
6018
|
* Pseudo element type.
|
6019
6019
|
*/
|
6020
|
-
export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new');
|
6020
|
+
export type PseudoType = ('first-line' | 'first-letter' | 'before' | 'after' | 'marker' | 'backdrop' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'select-fallback-button' | 'select-fallback-button-text' | 'picker');
|
6021
6021
|
|
6022
6022
|
/**
|
6023
6023
|
* Shadow root type.
|
@@ -11001,7 +11001,7 @@ export namespace Protocol {
|
|
11001
11001
|
/**
|
11002
11002
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
11003
11003
|
*/
|
11004
|
-
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | '
|
11004
|
+
export type CookieExemptionReason = ('None' | 'UserSetting' | 'TPCDMetadata' | 'TPCDDeprecationTrial' | 'TopLevelTPCDDeprecationTrial' | 'TPCDHeuristics' | 'EnterprisePolicy' | 'StorageAccess' | 'TopLevelStorageAccess' | 'Scheme');
|
11005
11005
|
|
11006
11006
|
/**
|
11007
11007
|
* A cookie which was not stored from a response with the corresponding reason.
|
@@ -13424,7 +13424,7 @@ export namespace Protocol {
|
|
13424
13424
|
* All Permissions Policy features. This enum should match the one defined
|
13425
13425
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
13426
13426
|
*/
|
13427
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'cross-origin-isolated' | 'deferred-fetch' | 'digital-credentials-get' | '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' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'xr-spatial-tracking');
|
13427
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'digital-credentials-get' | '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' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'sync-xhr' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'xr-spatial-tracking');
|
13428
13428
|
|
13429
13429
|
/**
|
13430
13430
|
* Reason for a permissions policy feature to be disabled.
|