devtools-protocol 0.0.981034 → 0.0.982423
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.
@@ -3242,6 +3242,11 @@
|
|
3242
3242
|
"description": "Supports rule text.",
|
3243
3243
|
"type": "string"
|
3244
3244
|
},
|
3245
|
+
{
|
3246
|
+
"name": "active",
|
3247
|
+
"description": "Whether the supports condition is satisfied.",
|
3248
|
+
"type": "boolean"
|
3249
|
+
},
|
3245
3250
|
{
|
3246
3251
|
"name": "range",
|
3247
3252
|
"description": "The associated rule header range in the enclosing stylesheet (if\navailable).",
|
@@ -14919,6 +14924,7 @@
|
|
14919
14924
|
"ambient-light-sensor",
|
14920
14925
|
"attribution-reporting",
|
14921
14926
|
"autoplay",
|
14927
|
+
"browsing-topics",
|
14922
14928
|
"camera",
|
14923
14929
|
"ch-dpr",
|
14924
14930
|
"ch-device-memory",
|
@@ -14959,6 +14965,7 @@
|
|
14959
14965
|
"gyroscope",
|
14960
14966
|
"hid",
|
14961
14967
|
"idle-detection",
|
14968
|
+
"interest-cohort",
|
14962
14969
|
"join-ad-interest-group",
|
14963
14970
|
"keyboard-map",
|
14964
14971
|
"magnetometer",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1542,6 +1542,8 @@ experimental domain CSS
|
|
1542
1542
|
properties
|
1543
1543
|
# Supports rule text.
|
1544
1544
|
string text
|
1545
|
+
# Whether the supports condition is satisfied.
|
1546
|
+
boolean active
|
1545
1547
|
# The associated rule header range in the enclosing stylesheet (if
|
1546
1548
|
# available).
|
1547
1549
|
optional SourceRange range
|
@@ -6938,6 +6940,7 @@ domain Page
|
|
6938
6940
|
ambient-light-sensor
|
6939
6941
|
attribution-reporting
|
6940
6942
|
autoplay
|
6943
|
+
browsing-topics
|
6941
6944
|
camera
|
6942
6945
|
ch-dpr
|
6943
6946
|
ch-device-memory
|
@@ -6978,6 +6981,7 @@ domain Page
|
|
6978
6981
|
gyroscope
|
6979
6982
|
hid
|
6980
6983
|
idle-detection
|
6984
|
+
interest-cohort
|
6981
6985
|
join-ad-interest-group
|
6982
6986
|
keyboard-map
|
6983
6987
|
magnetometer
|
package/types/protocol.d.ts
CHANGED
@@ -4383,6 +4383,10 @@ export namespace Protocol {
|
|
4383
4383
|
* Supports rule text.
|
4384
4384
|
*/
|
4385
4385
|
text: string;
|
4386
|
+
/**
|
4387
|
+
* Whether the supports condition is satisfied.
|
4388
|
+
*/
|
4389
|
+
active: boolean;
|
4386
4390
|
/**
|
4387
4391
|
* The associated rule header range in the enclosing stylesheet (if
|
4388
4392
|
* available).
|
@@ -12005,7 +12009,7 @@ export namespace Protocol {
|
|
12005
12009
|
* All Permissions Policy features. This enum should match the one defined
|
12006
12010
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12007
12011
|
*/
|
12008
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | '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' | 'ch-partitioned-cookies' | 'clipboard-read' | 'clipboard-write' | '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' | 'idle-detection' | 'join-ad-interest-group' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
|
12012
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | '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' | 'ch-partitioned-cookies' | 'clipboard-read' | 'clipboard-write' | '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' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
|
12009
12013
|
|
12010
12014
|
/**
|
12011
12015
|
* Reason for a permissions policy feature to be disabled.
|