devtools-protocol 0.0.1323165 → 0.0.1323532

Sign up to get free protection for your applications and to get access to all the features.
@@ -4632,7 +4632,7 @@
4632
4632
  },
4633
4633
  {
4634
4634
  "name": "cssPositionTryRules",
4635
- "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.",
4636
4636
  "optional": true,
4637
4637
  "type": "array",
4638
4638
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1323165",
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",
@@ -2207,7 +2207,7 @@ experimental domain CSS
2207
2207
  optional array of CSSKeyframesRule cssKeyframesRules
2208
2208
  # A list of CSS position fallbacks matching this node.
2209
2209
  deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2210
- # 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.
2211
2211
  optional array of CSSPositionTryRule cssPositionTryRules
2212
2212
  # A list of CSS at-property rules matching this node.
2213
2213
  optional array of CSSPropertyRule cssPropertyRules
@@ -5423,7 +5423,7 @@ export namespace Protocol {
5423
5423
  */
5424
5424
  cssPositionFallbackRules?: CSSPositionFallbackRule[];
5425
5425
  /**
5426
- * 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.
5427
5427
  */
5428
5428
  cssPositionTryRules?: CSSPositionTryRule[];
5429
5429
  /**