devtools-protocol 0.0.964462 → 0.0.966979
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 +37 -6
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +16 -3
- package/types/protocol.d.ts +25 -6
|
@@ -2873,6 +2873,16 @@
|
|
|
2873
2873
|
"items": {
|
|
2874
2874
|
"$ref": "CSSContainerQuery"
|
|
2875
2875
|
}
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"name": "supports",
|
|
2879
|
+
"description": "@supports CSS at-rule array.\nThe array enumerates @supports at-rules starting with the innermost one, going outwards.",
|
|
2880
|
+
"experimental": true,
|
|
2881
|
+
"optional": true,
|
|
2882
|
+
"type": "array",
|
|
2883
|
+
"items": {
|
|
2884
|
+
"$ref": "CSSSupports"
|
|
2885
|
+
}
|
|
2876
2886
|
}
|
|
2877
2887
|
]
|
|
2878
2888
|
},
|
|
@@ -3197,6 +3207,31 @@
|
|
|
3197
3207
|
}
|
|
3198
3208
|
]
|
|
3199
3209
|
},
|
|
3210
|
+
{
|
|
3211
|
+
"id": "CSSSupports",
|
|
3212
|
+
"description": "CSS Supports at-rule descriptor.",
|
|
3213
|
+
"experimental": true,
|
|
3214
|
+
"type": "object",
|
|
3215
|
+
"properties": [
|
|
3216
|
+
{
|
|
3217
|
+
"name": "text",
|
|
3218
|
+
"description": "Supports rule text.",
|
|
3219
|
+
"type": "string"
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"name": "range",
|
|
3223
|
+
"description": "The associated rule header range in the enclosing stylesheet (if\navailable).",
|
|
3224
|
+
"optional": true,
|
|
3225
|
+
"$ref": "SourceRange"
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"name": "styleSheetId",
|
|
3229
|
+
"description": "Identifier of the stylesheet containing this object (if exists).",
|
|
3230
|
+
"optional": true,
|
|
3231
|
+
"$ref": "StyleSheetId"
|
|
3232
|
+
}
|
|
3233
|
+
]
|
|
3234
|
+
},
|
|
3200
3235
|
{
|
|
3201
3236
|
"id": "PlatformFontUsage",
|
|
3202
3237
|
"description": "Information about amount of glyphs that were rendered with given font.",
|
|
@@ -7993,12 +8028,6 @@
|
|
|
7993
8028
|
"optional": true,
|
|
7994
8029
|
"type": "integer"
|
|
7995
8030
|
},
|
|
7996
|
-
{
|
|
7997
|
-
"name": "waitForNavigation",
|
|
7998
|
-
"description": "If set the virtual time policy change should be deferred until any frame starts navigating.\nNote any previous deferred policy change is superseded.",
|
|
7999
|
-
"optional": true,
|
|
8000
|
-
"type": "boolean"
|
|
8001
|
-
},
|
|
8002
8031
|
{
|
|
8003
8032
|
"name": "initialVirtualTime",
|
|
8004
8033
|
"description": "If set, base::Time::Now will be overridden to initially return this value.",
|
|
@@ -14766,9 +14795,11 @@
|
|
|
14766
14795
|
"ch-ua-full-version-list",
|
|
14767
14796
|
"ch-ua-platform-version",
|
|
14768
14797
|
"ch-ua-reduced",
|
|
14798
|
+
"ch-ua-wow64",
|
|
14769
14799
|
"ch-viewport-height",
|
|
14770
14800
|
"ch-viewport-width",
|
|
14771
14801
|
"ch-width",
|
|
14802
|
+
"ch-partitioned-cookies",
|
|
14772
14803
|
"clipboard-read",
|
|
14773
14804
|
"clipboard-write",
|
|
14774
14805
|
"cross-origin-isolated",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -1386,6 +1386,9 @@ experimental domain CSS
|
|
|
1386
1386
|
# Container query list array (for rules involving container queries).
|
|
1387
1387
|
# The array enumerates container queries starting with the innermost one, going outwards.
|
|
1388
1388
|
experimental optional array of CSSContainerQuery containerQueries
|
|
1389
|
+
# @supports CSS at-rule array.
|
|
1390
|
+
# The array enumerates @supports at-rules starting with the innermost one, going outwards.
|
|
1391
|
+
experimental optional array of CSSSupports supports
|
|
1389
1392
|
|
|
1390
1393
|
# CSS coverage information.
|
|
1391
1394
|
type RuleUsage extends object
|
|
@@ -1522,6 +1525,17 @@ experimental domain CSS
|
|
|
1522
1525
|
# Optional name for the container.
|
|
1523
1526
|
optional string name
|
|
1524
1527
|
|
|
1528
|
+
# CSS Supports at-rule descriptor.
|
|
1529
|
+
experimental type CSSSupports extends object
|
|
1530
|
+
properties
|
|
1531
|
+
# Supports rule text.
|
|
1532
|
+
string text
|
|
1533
|
+
# The associated rule header range in the enclosing stylesheet (if
|
|
1534
|
+
# available).
|
|
1535
|
+
optional SourceRange range
|
|
1536
|
+
# Identifier of the stylesheet containing this object (if exists).
|
|
1537
|
+
optional StyleSheetId styleSheetId
|
|
1538
|
+
|
|
1525
1539
|
# Information about amount of glyphs that were rendered with given font.
|
|
1526
1540
|
type PlatformFontUsage extends object
|
|
1527
1541
|
properties
|
|
@@ -3642,9 +3656,6 @@ domain Emulation
|
|
|
3642
3656
|
# If set this specifies the maximum number of tasks that can be run before virtual is forced
|
|
3643
3657
|
# forwards to prevent deadlock.
|
|
3644
3658
|
optional integer maxVirtualTimeTaskStarvationCount
|
|
3645
|
-
# If set the virtual time policy change should be deferred until any frame starts navigating.
|
|
3646
|
-
# Note any previous deferred policy change is superseded.
|
|
3647
|
-
optional boolean waitForNavigation
|
|
3648
3659
|
# If set, base::Time::Now will be overridden to initially return this value.
|
|
3649
3660
|
optional Network.TimeSinceEpoch initialVirtualTime
|
|
3650
3661
|
returns
|
|
@@ -6881,9 +6892,11 @@ domain Page
|
|
|
6881
6892
|
ch-ua-full-version-list
|
|
6882
6893
|
ch-ua-platform-version
|
|
6883
6894
|
ch-ua-reduced
|
|
6895
|
+
ch-ua-wow64
|
|
6884
6896
|
ch-viewport-height
|
|
6885
6897
|
ch-viewport-width
|
|
6886
6898
|
ch-width
|
|
6899
|
+
ch-partitioned-cookies
|
|
6887
6900
|
clipboard-read
|
|
6888
6901
|
clipboard-write
|
|
6889
6902
|
cross-origin-isolated
|
package/types/protocol.d.ts
CHANGED
|
@@ -4114,6 +4114,11 @@ export namespace Protocol {
|
|
|
4114
4114
|
* The array enumerates container queries starting with the innermost one, going outwards.
|
|
4115
4115
|
*/
|
|
4116
4116
|
containerQueries?: CSSContainerQuery[];
|
|
4117
|
+
/**
|
|
4118
|
+
* @supports CSS at-rule array.
|
|
4119
|
+
* The array enumerates @supports at-rules starting with the innermost one, going outwards.
|
|
4120
|
+
*/
|
|
4121
|
+
supports?: CSSSupports[];
|
|
4117
4122
|
}
|
|
4118
4123
|
|
|
4119
4124
|
/**
|
|
@@ -4356,6 +4361,25 @@ export namespace Protocol {
|
|
|
4356
4361
|
name?: string;
|
|
4357
4362
|
}
|
|
4358
4363
|
|
|
4364
|
+
/**
|
|
4365
|
+
* CSS Supports at-rule descriptor.
|
|
4366
|
+
*/
|
|
4367
|
+
export interface CSSSupports {
|
|
4368
|
+
/**
|
|
4369
|
+
* Supports rule text.
|
|
4370
|
+
*/
|
|
4371
|
+
text: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* The associated rule header range in the enclosing stylesheet (if
|
|
4374
|
+
* available).
|
|
4375
|
+
*/
|
|
4376
|
+
range?: SourceRange;
|
|
4377
|
+
/**
|
|
4378
|
+
* Identifier of the stylesheet containing this object (if exists).
|
|
4379
|
+
*/
|
|
4380
|
+
styleSheetId?: StyleSheetId;
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4359
4383
|
/**
|
|
4360
4384
|
* Information about amount of glyphs that were rendered with given font.
|
|
4361
4385
|
*/
|
|
@@ -7389,11 +7413,6 @@ export namespace Protocol {
|
|
|
7389
7413
|
* forwards to prevent deadlock.
|
|
7390
7414
|
*/
|
|
7391
7415
|
maxVirtualTimeTaskStarvationCount?: integer;
|
|
7392
|
-
/**
|
|
7393
|
-
* If set the virtual time policy change should be deferred until any frame starts navigating.
|
|
7394
|
-
* Note any previous deferred policy change is superseded.
|
|
7395
|
-
*/
|
|
7396
|
-
waitForNavigation?: boolean;
|
|
7397
7416
|
/**
|
|
7398
7417
|
* If set, base::Time::Now will be overridden to initially return this value.
|
|
7399
7418
|
*/
|
|
@@ -11902,7 +11921,7 @@ export namespace Protocol {
|
|
|
11902
11921
|
* All Permissions Policy features. This enum should match the one defined
|
|
11903
11922
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
|
11904
11923
|
*/
|
|
11905
|
-
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-viewport-height' | 'ch-viewport-width' | 'ch-width' | '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');
|
|
11924
|
+
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' | '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');
|
|
11906
11925
|
|
|
11907
11926
|
/**
|
|
11908
11927
|
* Reason for a permissions policy feature to be disabled.
|