| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/API/TrustedTypePolicy | [Back] [Original] |
Get to know MDN better
Since February 2026, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Note: This feature is available in Web Workers.
The TrustedTypePolicy interface of the Trusted Types API defines a group of functions which create TrustedType objects.
A TrustedTypePolicy object is created by TrustedTypePolicyFactory.createPolicy() to define a policy for enforcing security rules on input. Therefore, TrustedTypePolicy has no constructor.
TrustedTypePolicy.name Read onlyA string containing the name of the policy.
TrustedTypePolicy.createHTML()Creates a TrustedHTML object.
TrustedTypePolicy.createScript()Creates a TrustedScript object.
TrustedTypePolicy.createScriptURL()Creates a TrustedScriptURL object.
In the below example we create a policy that will create TrustedHTML objects using TrustedTypePolicyFactory.createPolicy(). We can then use TrustedTypePolicy.createHTML to create a sanitized HTML string to be inserted into the document.
The sanitized value can then be used with Element.innerHTML to ensure that no new HTML elements can be injected.
<div id="myDiv"></div>
const escapeHTMLPolicy = trustedTypes.createPolicy("myEscapePolicy", {
createHTML: (string) => string.replace(/</g, "<"),
});
let el = document.getElementById("myDiv");
const escaped = escapeHTMLPolicy.createHTML("<img src=x onerror=alert(1)>");
console.log(escaped instanceof TrustedHTML); // true
el.innerHTML = escaped;
| Specification |
|---|
| Trusted Types # trusted-type-policy |
This page was last modified on Aug 3, 2024 by MDN contributors.
TrustedTypePolicyYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |