devtools-protocol 0.0.1222075 → 0.0.1224083

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.
@@ -4057,6 +4057,34 @@
4057
4057
  }
4058
4058
  ]
4059
4059
  },
4060
+ {
4061
+ "id": "CSSFontPaletteValuesRule",
4062
+ "description": "CSS font-palette-values rule representation.",
4063
+ "type": "object",
4064
+ "properties": [
4065
+ {
4066
+ "name": "styleSheetId",
4067
+ "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
4068
+ "optional": true,
4069
+ "$ref": "StyleSheetId"
4070
+ },
4071
+ {
4072
+ "name": "origin",
4073
+ "description": "Parent stylesheet's origin.",
4074
+ "$ref": "StyleSheetOrigin"
4075
+ },
4076
+ {
4077
+ "name": "fontPaletteName",
4078
+ "description": "Associated font palette name.",
4079
+ "$ref": "Value"
4080
+ },
4081
+ {
4082
+ "name": "style",
4083
+ "description": "Associated style declaration.",
4084
+ "$ref": "CSSStyle"
4085
+ }
4086
+ ]
4087
+ },
4060
4088
  {
4061
4089
  "id": "CSSPropertyRule",
4062
4090
  "description": "CSS property at-rule representation.",
@@ -4401,6 +4429,12 @@
4401
4429
  "$ref": "CSSPropertyRegistration"
4402
4430
  }
4403
4431
  },
4432
+ {
4433
+ "name": "cssFontPaletteValuesRule",
4434
+ "description": "A font-palette-values rule matching this node.",
4435
+ "optional": true,
4436
+ "$ref": "CSSFontPaletteValuesRule"
4437
+ },
4404
4438
  {
4405
4439
  "name": "parentLayoutNodeId",
4406
4440
  "description": "Id of the first parent element that does not have display: contents.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1222075",
3
+ "version": "0.0.1224083",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1926,6 +1926,19 @@ experimental domain CSS
1926
1926
  string syntax
1927
1927
 
1928
1928
 
1929
+ # CSS font-palette-values rule representation.
1930
+ type CSSFontPaletteValuesRule extends object
1931
+ properties
1932
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
1933
+ # stylesheet rules) this rule came from.
1934
+ optional StyleSheetId styleSheetId
1935
+ # Parent stylesheet's origin.
1936
+ StyleSheetOrigin origin
1937
+ # Associated font palette name.
1938
+ Value fontPaletteName
1939
+ # Associated style declaration.
1940
+ CSSStyle style
1941
+
1929
1942
  # CSS property at-rule representation.
1930
1943
  type CSSPropertyRule extends object
1931
1944
  properties
@@ -2070,6 +2083,8 @@ experimental domain CSS
2070
2083
  optional array of CSSPropertyRule cssPropertyRules
2071
2084
  # A list of CSS property registrations matching this node.
2072
2085
  optional array of CSSPropertyRegistration cssPropertyRegistrations
2086
+ # A font-palette-values rule matching this node.
2087
+ optional CSSFontPaletteValuesRule cssFontPaletteValuesRule
2073
2088
  # Id of the first parent element that does not have display: contents.
2074
2089
  experimental optional DOM.NodeId parentLayoutNodeId
2075
2090
 
@@ -5058,6 +5058,29 @@ export namespace Protocol {
5058
5058
  syntax: string;
5059
5059
  }
5060
5060
 
5061
+ /**
5062
+ * CSS font-palette-values rule representation.
5063
+ */
5064
+ export interface CSSFontPaletteValuesRule {
5065
+ /**
5066
+ * The css style sheet identifier (absent for user agent stylesheet and user-specified
5067
+ * stylesheet rules) this rule came from.
5068
+ */
5069
+ styleSheetId?: StyleSheetId;
5070
+ /**
5071
+ * Parent stylesheet's origin.
5072
+ */
5073
+ origin: StyleSheetOrigin;
5074
+ /**
5075
+ * Associated font palette name.
5076
+ */
5077
+ fontPaletteName: Value;
5078
+ /**
5079
+ * Associated style declaration.
5080
+ */
5081
+ style: CSSStyle;
5082
+ }
5083
+
5061
5084
  /**
5062
5085
  * CSS property at-rule representation.
5063
5086
  */
@@ -5278,6 +5301,10 @@ export namespace Protocol {
5278
5301
  * A list of CSS property registrations matching this node.
5279
5302
  */
5280
5303
  cssPropertyRegistrations?: CSSPropertyRegistration[];
5304
+ /**
5305
+ * A font-palette-values rule matching this node.
5306
+ */
5307
+ cssFontPaletteValuesRule?: CSSFontPaletteValuesRule;
5281
5308
  /**
5282
5309
  * Id of the first parent element that does not have display: contents.
5283
5310
  */