Back to Content

PerformanceScriptTiming: sourceURL property

files/en-us/web/api/performancescripttiming/sourceurl/index.md

latest955 B
Original Source

{{SeeCompatTable}}{{APIRef("Performance API")}}

The sourceURL read-only property of the {{domxref("PerformanceScriptTiming")}} interface returns a string representing the URL of the script.

It is important to note that the reported function location will be the "entry point" of the script, that is, the top level of the stack, not any specific slow sub-function. See {{domxref("PerformanceScriptTiming.sourceFunctionName")}} for more discussion around this.

Value

A string. Returns an empty string if the URL was not found.

Examples

See Long animation frame timing for examples related to the Long Animation Frames API.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also