CSS.takeComputedStyleUpdatesPolls the next batch of computed style updates.
| Name | Type | Description |
|---|---|---|
nodeIds | array | The list of node Ids that have their tracked computed styles updated. |
{
"id": 1,
"method": "CSS.takeComputedStyleUpdates"
}
{
"id": 1,
"result": {
"nodeIds": [
3,
4,
5
]
}
}
const result = await send('CSS.takeComputedStyleUpdates');
console.log(result);
// {"nodeIds": [3, 4, 5]}