ReportingObserverOptions
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The ReportingObserverOptions
dictionary of the Reporting API allows options to be set in the constructor when creating a ReportingObserver
.
Properties
types
-
An array of strings representing the types of report to be collected by this observer. Available types include
deprecation
,intervention
, andcrash
. buffered
-
A boolean that defines whether the reports that were generated before the observer was able to be created should be observable (
true
) or not (false
).
Examples
let options = {
types: ['deprecation'],
buffered: true
}
let observer = new ReportingObserver(function(reports, observer) {
reportBtn.onclick = () => displayReports(reports);
}, options);
Specifications
No specification found
No specification data found for api.ReportingObserverOptions
.
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.ReportingObserverOptions
.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.