devtools-protocol 0.0.1222075 → 0.0.1224742

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.",
@@ -9272,7 +9306,7 @@
9272
9306
  },
9273
9307
  {
9274
9308
  "name": "acceptLanguage",
9275
- "description": "Browser langugage to emulate.",
9309
+ "description": "Browser language to emulate.",
9276
9310
  "optional": true,
9277
9311
  "type": "string"
9278
9312
  },
@@ -14020,7 +14054,7 @@
14020
14054
  },
14021
14055
  {
14022
14056
  "name": "acceptLanguage",
14023
- "description": "Browser langugage to emulate.",
14057
+ "description": "Browser language to emulate.",
14024
14058
  "optional": true,
14025
14059
  "type": "string"
14026
14060
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1222075",
3
+ "version": "0.0.1224742",
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
 
@@ -4235,7 +4250,7 @@ domain Emulation
4235
4250
  parameters
4236
4251
  # User agent to use.
4237
4252
  string userAgent
4238
- # Browser langugage to emulate.
4253
+ # Browser language to emulate.
4239
4254
  optional string acceptLanguage
4240
4255
  # The platform navigator.platform should return.
4241
4256
  optional string platform
@@ -6412,7 +6427,7 @@ domain Network
6412
6427
  parameters
6413
6428
  # User agent to use.
6414
6429
  string userAgent
6415
- # Browser langugage to emulate.
6430
+ # Browser language to emulate.
6416
6431
  optional string acceptLanguage
6417
6432
  # The platform navigator.platform should return.
6418
6433
  optional string platform
@@ -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
  */
@@ -8256,7 +8283,7 @@ export namespace Protocol {
8256
8283
  */
8257
8284
  userAgent: string;
8258
8285
  /**
8259
- * Browser langugage to emulate.
8286
+ * Browser language to emulate.
8260
8287
  */
8261
8288
  acceptLanguage?: string;
8262
8289
  /**
@@ -11326,7 +11353,7 @@ export namespace Protocol {
11326
11353
  */
11327
11354
  userAgent: string;
11328
11355
  /**
11329
- * Browser langugage to emulate.
11356
+ * Browser language to emulate.
11330
11357
  */
11331
11358
  acceptLanguage?: string;
11332
11359
  /**