Note: This feature is available in Web Workers.
The url read-only property of the Report interface returns the URL of the document that generated the report.
A string representing the URL of the document that generated the report.
const options = {
types: ["deprecation"],
buffered: true,
};
const observer = new ReportingObserver(([firstReport], observer) => {
// Log the URL of the document that generated the first report
// e.g. "https://www.example.com/cats.html"
console.log(firstReport.url);
}, options);
| Specification |
|---|
| Reporting API> # dom-report-url> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
url |
69 | 79 | 65 | 56 | 16.4 | 69 | No | 48 | 16.4 | 10.0 | 69 | 16.4 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Report/url