devtools-protocol 0.0.1319565 → 0.0.1323165

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.
@@ -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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1319565",
3
+ "version": "0.0.1323165",
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
@@ -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
  /**