Report: type property

Note: This feature is available in Web Workers.

The type read-only property of the Report interface returns the type of report generated, such as csp-violation.

The type determines the object used to populate the body property of the report.

Value

A string representing the type of the report. Allowed types include: coep, csp-violation, deprecation, intervention, integrity-violation.

See Report types in Reporting API for more information.

Examples

js
const options = {
  types: ["deprecation"],
  buffered: true,
};

const observer = new ReportingObserver(([firstReport], observer) => {
  // Log the first report's report type, i.e. "deprecation"
  console.log(firstReport.type);
}, options);

Specifications

Specification
Reporting API
# dom-report-type

Browser compatibility

See also