← Back to CSS domain

CSS.takeCoverageDelta

Obtain list of rules that became used since last call to this method (or since start of coverage instrumentation).

Domain: CSS experimental

Returns

NameTypeDescription
coveragearray
timestampnumberMonotonically increasing time, in seconds.

Example Request

{
  "id": 1,
  "method": "CSS.takeCoverageDelta"
}

Example Response

{
  "id": 1,
  "result": {
    "coverage": [],
    "timestamp": 1.0
  }
}

Usage in Node.js

const result = await send('CSS.takeCoverageDelta');
console.log(result);
// {"coverage": [], "timestamp": 1.0}