web api interface
TrustedTypePolicyFactory
Available in workers
The TrustedTypePolicyFactory interface of the Trusted Types API creates policies and allows the verification of Trusted Type objects against created policies.
Instance properties
emptyHTMLRead only- : Returns a
TrustedHTMLobject containing an empty string.
- : Returns a
emptyScriptRead only- : Returns a
TrustedScriptobject containing an empty string.
- : Returns a
defaultPolicyRead only- : Returns the default
TrustedTypePolicyor null if this is empty.
- : Returns the default
Instance methods
createPolicy()- : Creates a
TrustedTypePolicyobject that implements the rules passed aspolicyOptions.
- : Creates a
isHTML()- : When passed a value checks that it is a valid
TrustedHTMLobject.
- : When passed a value checks that it is a valid
isScript()- : When passed a value checks that it is a valid
TrustedScriptobject.
- : When passed a value checks that it is a valid
isScriptURL()- : When passed a value checks that it is a valid
TrustedScriptURLobject.
- : When passed a value checks that it is a valid
getAttributeType()- : Allows web developers to check whether a Trusted Type is required for an element and attribute, and if so which one.
getPropertyType()- : Allows web developers to check whether a Trusted Type is required for a property, and if so which one.
Examples
The below code creates a policy with the name "myEscapePolicy" with a function defined for createHTML() which sanitizes HTML.
We then use the policy to sanitize a string, creating a TrustedHTML object, escaped. This object can be tested with isHTML() to ensure that it was created by one of our policies.
const escapeHTMLPolicy = trustedTypes.createPolicy("myEscapePolicy", {
createHTML: (string) => string.replace(/</g, "<"),
});
const escaped = escapeHTMLPolicy.createHTML("<img src=x onerror=alert(1)>");
console.log(trustedTypes.isHTML(escaped)); // true;
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.