devtools-protocol 0.0.1319565 → 0.0.1323532

Sign up to get free protection for your applications and to get access to all the features.
@@ -4217,6 +4217,10 @@
4217
4217
  "name": "style",
4218
4218
  "description": "Associated style declaration.",
4219
4219
  "$ref": "CSSStyle"
4220
+ },
4221
+ {
4222
+ "name": "active",
4223
+ "type": "boolean"
4220
4224
  }
4221
4225
  ]
4222
4226
  },
@@ -4628,7 +4632,7 @@
4628
4632
  },
4629
4633
  {
4630
4634
  "name": "cssPositionTryRules",
4631
- "description": "A list of CSS @position-try rules matching this node, based on the position-try-options property.",
4635
+ "description": "A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.",
4632
4636
  "optional": true,
4633
4637
  "type": "array",
4634
4638
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1319565",
3
+ "version": "0.0.1323532",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2031,6 +2031,7 @@ experimental domain CSS
2031
2031
  StyleSheetOrigin origin
2032
2032
  # Associated style declaration.
2033
2033
  CSSStyle style
2034
+ boolean active
2034
2035
 
2035
2036
  # CSS keyframes rule representation.
2036
2037
  type CSSKeyframesRule extends object
@@ -2206,7 +2207,7 @@ experimental domain CSS
2206
2207
  optional array of CSSKeyframesRule cssKeyframesRules
2207
2208
  # A list of CSS position fallbacks matching this node.
2208
2209
  deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2209
- # A list of CSS @position-try rules matching this node, based on the position-try-options property.
2210
+ # A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
2210
2211
  optional array of CSSPositionTryRule cssPositionTryRules
2211
2212
  # A list of CSS at-property rules matching this node.
2212
2213
  optional array of CSSPropertyRule cssPropertyRules
@@ -5154,6 +5154,7 @@ export namespace Protocol {
5154
5154
  * Associated style declaration.
5155
5155
  */
5156
5156
  style: CSSStyle;
5157
+ active: boolean;
5157
5158
  }
5158
5159
 
5159
5160
  /**
@@ -5422,7 +5423,7 @@ export namespace Protocol {
5422
5423
  */
5423
5424
  cssPositionFallbackRules?: CSSPositionFallbackRule[];
5424
5425
  /**
5425
- * A list of CSS @position-try rules matching this node, based on the position-try-options property.
5426
+ * A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
5426
5427
  */
5427
5428
  cssPositionTryRules?: CSSPositionTryRule[];
5428
5429
  /**