devtools-protocol 0.0.964215 → 0.0.966949

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.
@@ -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.",
@@ -14766,9 +14801,11 @@
14766
14801
  "ch-ua-full-version-list",
14767
14802
  "ch-ua-platform-version",
14768
14803
  "ch-ua-reduced",
14804
+ "ch-ua-wow64",
14769
14805
  "ch-viewport-height",
14770
14806
  "ch-viewport-width",
14771
14807
  "ch-width",
14808
+ "ch-partitioned-cookies",
14772
14809
  "clipboard-read",
14773
14810
  "clipboard-write",
14774
14811
  "cross-origin-isolated",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.964215",
3
+ "version": "0.0.966949",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -6881,9 +6895,11 @@ domain Page
6881
6895
  ch-ua-full-version-list
6882
6896
  ch-ua-platform-version
6883
6897
  ch-ua-reduced
6898
+ ch-ua-wow64
6884
6899
  ch-viewport-height
6885
6900
  ch-viewport-width
6886
6901
  ch-width
6902
+ ch-partitioned-cookies
6887
6903
  clipboard-read
6888
6904
  clipboard-write
6889
6905
  cross-origin-isolated
@@ -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
  */
@@ -11902,7 +11926,7 @@ export namespace Protocol {
11902
11926
  * All Permissions Policy features. This enum should match the one defined
11903
11927
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
11904
11928
  */
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');
11929
+ 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
11930
 
11907
11931
  /**
11908
11932
  * Reason for a permissions policy feature to be disabled.