web api instance method
TrustedTypePolicy: createHTML() method
Available in workers
The createHTML() method of the TrustedTypePolicy interface creates a TrustedHTML object using a policy created by createPolicy().
Syntax
createHTML(input)
createHTML(input, args)
Parameters
input- : A string containing the string to be sanitized by the policy.
argsOptional- : Additional arguments to be passed to the function represented by
TrustedTypePolicy.
- : Additional arguments to be passed to the function represented by
Return value
A TrustedHTML object.
Exceptions
TypeError- : Thrown if
TrustedTypePolicydoes not contain a function to run on the input.
- : Thrown if
Examples
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)>");
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.