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 createHTML() method of the TrustedTypePolicy interface creates a TrustedHTML object using a policy created by TrustedTypePolicyFactory.createPolicy().
createHTML(input) createHTML(input, args)
inputA string containing the string to be sanitized by the policy.
args OptionalAdditional arguments to be passed to the function represented by TrustedTypePolicy.
A TrustedHTML object.
TypeErrorThrown if TrustedTypePolicy does not contain a function to run on the input.
In the below example a string containing a potentially dangerous script is used as the input for createHTML(). Dangerous code inserted by a user could then be sanitized before insertion into any injection sink.
const escaped = escapeHTMLPolicy.createHTML("<img src=x onerror=alert(1)>");
| Specification |
|---|
| Trusted Types> # dom-trustedtypepolicy-createhtml> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
createHTML |
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/TrustedTypePolicy/createHTML