← Back to CSS domain
CSS.getLonghandProperties
No description available.
Domain: CSS
experimental
Parameters
| Name | Type | Description |
shorthandName | string | |
value | string | |
Returns
| Name | Type | Description |
longhandProperties | array | |
Example Request
{
"id": 1,
"method": "CSS.getLonghandProperties",
"params": {
"shorthandName": "shorthandName-value",
"value": "example-value"
}
}
Example Response
{
"id": 1,
"result": {
"longhandProperties": []
}
}
Usage in Node.js
const result = await send('CSS.getLonghandProperties', {"shorthandName": "shorthandName-value", "value": "example-value"});
console.log(result);
// {"longhandProperties": []}