devtools-protocol 0.0.1224742 → 0.0.1225305

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