devtools-protocol 0.0.1224083 → 0.0.1225305

Sign up to get free protection for your applications and to get access to all the features.
@@ -3866,6 +3866,11 @@
3866
3866
  "description": "Font's family name reported by platform.",
3867
3867
  "type": "string"
3868
3868
  },
3869
+ {
3870
+ "name": "postScriptName",
3871
+ "description": "Font's PostScript name reported by platform.",
3872
+ "type": "string"
3873
+ },
3869
3874
  {
3870
3875
  "name": "isCustomFont",
3871
3876
  "description": "Indicates if the font was downloaded or resolved locally.",
@@ -9306,7 +9311,7 @@
9306
9311
  },
9307
9312
  {
9308
9313
  "name": "acceptLanguage",
9309
- "description": "Browser langugage to emulate.",
9314
+ "description": "Browser language to emulate.",
9310
9315
  "optional": true,
9311
9316
  "type": "string"
9312
9317
  },
@@ -14054,7 +14059,7 @@
14054
14059
  },
14055
14060
  {
14056
14061
  "name": "acceptLanguage",
14057
- "description": "Browser langugage to emulate.",
14062
+ "description": "Browser language to emulate.",
14058
14063
  "optional": true,
14059
14064
  "type": "string"
14060
14065
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1224083",
3
+ "version": "0.0.1225305",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1847,6 +1847,8 @@ experimental domain CSS
1847
1847
  properties
1848
1848
  # Font's family name reported by platform.
1849
1849
  string familyName
1850
+ # Font's PostScript name reported by platform.
1851
+ string postScriptName
1850
1852
  # Indicates if the font was downloaded or resolved locally.
1851
1853
  boolean isCustomFont
1852
1854
  # Amount of glyphs that were rendered with this font.
@@ -4250,7 +4252,7 @@ domain Emulation
4250
4252
  parameters
4251
4253
  # User agent to use.
4252
4254
  string userAgent
4253
- # Browser langugage to emulate.
4255
+ # Browser language to emulate.
4254
4256
  optional string acceptLanguage
4255
4257
  # The platform navigator.platform should return.
4256
4258
  optional string platform
@@ -6427,7 +6429,7 @@ domain Network
6427
6429
  parameters
6428
6430
  # User agent to use.
6429
6431
  string userAgent
6430
- # Browser langugage to emulate.
6432
+ # Browser language to emulate.
6431
6433
  optional string acceptLanguage
6432
6434
  # The platform navigator.platform should return.
6433
6435
  optional string platform
@@ -4921,6 +4921,10 @@ export namespace Protocol {
4921
4921
  * Font's family name reported by platform.
4922
4922
  */
4923
4923
  familyName: string;
4924
+ /**
4925
+ * Font's PostScript name reported by platform.
4926
+ */
4927
+ postScriptName: string;
4924
4928
  /**
4925
4929
  * Indicates if the font was downloaded or resolved locally.
4926
4930
  */
@@ -8283,7 +8287,7 @@ export namespace Protocol {
8283
8287
  */
8284
8288
  userAgent: string;
8285
8289
  /**
8286
- * Browser langugage to emulate.
8290
+ * Browser language to emulate.
8287
8291
  */
8288
8292
  acceptLanguage?: string;
8289
8293
  /**
@@ -11353,7 +11357,7 @@ export namespace Protocol {
11353
11357
  */
11354
11358
  userAgent: string;
11355
11359
  /**
11356
- * Browser langugage to emulate.
11360
+ * Browser language to emulate.
11357
11361
  */
11358
11362
  acceptLanguage?: string;
11359
11363
  /**