dom / latest / interventionreportbody.html /

InterventionReportBody

The InterventionReportBody interface of the Reporting API represents the body of an intervention report.

An intervention report is generated when usage of a feature in a web document has been blocked by the browser for reasons such as security, performance, or user annoyance. So for example, a script was been stopped because it was significantly slowing down the browser, or the browser's autoplay policy blocked audio from playing without a user gesture to trigger it.

A deprecation report is generated when a deprecated feature (for example a deprecated API method) is used on a document being observed by a ReportingObserver. In addition to the support of this API, receiving useful intervention warnings relies on browser vendors adding these warnings for the relevant features.

ReportBody InterventionReportBody

Constructor

An instance of InterventionReportBody is returned as the value of Report.body when Report.Type is intervention. The interface has no constructor.

Properties

This interface also inherits properties from ReportBody.

InterventionReportBody.id Read only

A string representing the intervention that generated the report. This can be used to group reports.

InterventionReportBody.message Read only

A string containing a human-readable description of the intervention, including information such how the intervention could be avoided. This typically matches the message a browser will display in its DevTools console when an intervention is imposed, if one is available.

InterventionReportBody.sourceFile Read only

A string containing the path to the source file where the intervention occurred, if known, or null otherwise.

InterventionReportBody.lineNumber Read only

A string representing the line in the source file in which the intervention occurred, if known, or null otherwise.

InterventionReportBody.columnNumber Read only

A string representing the column in the source file in which the intervention occurred, if known, or null otherwise.

Methods

This interface also inherits methods from ReportBody.

InterventionReportBody.toJSON()

A serializer which returns a JSON representation of the InterventionReportBody object.

Examples

In this example we create a new ReportingObserver to observe intervention reports, then print details of each property of the first report to the console.

let options = {
  types: ['intervention'],
  buffered: true
}

let observer = new ReportingObserver(function(reports, observer) {
  let firstReport = reports[0];
  console.log(firstReport.type); // intervention
  console.log(firstReport.body.id);
  console.log(firstReport.body.message);
  console.log(firstReport.body.sourceFile);
  console.log(firstReport.body.lineNumber);
  console.log(firstReport.body.columnNumber);
}, options);

Specifications

No specification found

No specification data found for api.InterventionReportBody.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Browser compatibility

No compatibility data found for api.InterventionReportBody.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/InterventionReportBody