Report.url
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The url
read-only property of the Report
interface returns the URL of the document that generated the report.
Value
A string representing the URL of the document that generated the report.
Examples
let options = {
types: ['deprecation'],
buffered: true
}
let observer = new ReportingObserver(function(reports, observer) {
let firstReport = reports[0];
// Log the URL of the document that generated the first report
// e.g. "https://www.example.com/cats.html"
console.log(firstReport.url);
}, options);
Specifications
Specification |
---|
Reporting API # dom-report-url |
Browser compatibility
This feature is not yet available by default in any released browser. It can be activated in Firefox by setting dom_reporting_enabled
to true
and in Chrome if you enable this experimental feature.