This feature is not Baseline because it does not work in some of the most widely-used browsers.
Note: This feature is available in Web Workers.
The TrustedScriptURL interface of the Trusted Types API represents a string that a developer can insert into an injection sink that will parse it as a URL of an external script. These objects are created via TrustedTypePolicy.createScriptURL() and therefore have no constructor.
The value of a TrustedScriptURL object is set when the object is created and cannot be changed by JavaScript as there is no setter exposed.
TrustedScriptURL.toJSON()Returns a JSON representation of the stored data.
TrustedScriptURL.toString()A string containing the sanitized URL.
The constant sanitized is an object created via a Trusted Types policy.
const sanitized = scriptPolicy.createScriptURL( "https://example.com/my-script.js", ); console.log(sanitized); /* a TrustedScriptURL object */
| Specification |
|---|
| Trusted Types> # trused-script-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 | |
TrustedScriptURL |
83 | 83 | No | 69 | 26 | 83 | No | 59 | 26 | 13.0 | 83 | 26 |
toJSON |
90 | 90 | No | 76 | 26 | 90 | No | 64 | 26 | 15.0 | 90 | 26 |
toString |
83 | 83 | No | 69 | 26 | 83 | No | 59 | 26 | 13.0 | 83 | 26 |
© 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/TrustedScriptURL