devtools-protocol 0.0.981744 → 0.0.982238

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).",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.981744",
3
+ "version": "0.0.982238",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
@@ -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).