CSS.setLocalFontsEnabledEnables/disables rendering of local CSS fonts (enabled by default).
| Name | Type | Description |
|---|---|---|
enabled | boolean | Whether rendering of local fonts is enabled. |
{
"id": 1,
"method": "CSS.setLocalFontsEnabled",
"params": {
"enabled": true
}
}
{
"id": 1,
"result": {}
}
const result = await send('CSS.setLocalFontsEnabled', {"enabled": true});
console.log(result);