devtools-protocol 0.0.996285 → 0.0.996622

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.
@@ -15724,6 +15724,12 @@
15724
15724
  "description": "The fantasy font-family.",
15725
15725
  "optional": true,
15726
15726
  "type": "string"
15727
+ },
15728
+ {
15729
+ "name": "math",
15730
+ "description": "The math font-family.",
15731
+ "optional": true,
15732
+ "type": "string"
15727
15733
  }
15728
15734
  ]
15729
15735
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.996285",
3
+ "version": "0.0.996622",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -7357,6 +7357,8 @@ domain Page
7357
7357
  optional string cursive
7358
7358
  # The fantasy font-family.
7359
7359
  optional string fantasy
7360
+ # The math font-family.
7361
+ optional string math
7360
7362
 
7361
7363
  # Font families collection for a script.
7362
7364
  experimental type ScriptFontFamilies extends object
@@ -12493,6 +12493,10 @@ export namespace Protocol {
12493
12493
  * The fantasy font-family.
12494
12494
  */
12495
12495
  fantasy?: string;
12496
+ /**
12497
+ * The math font-family.
12498
+ */
12499
+ math?: string;
12496
12500
  }
12497
12501
 
12498
12502
  /**