Note: This feature is available in Web Workers.
The getAttributeType() method of the TrustedTypePolicyFactory interface allows web developers to check if a Trusted Type is required for an element, and if so which Trusted Type is used.
getAttributeType(tagName, attribute)
getAttributeType(tagName, attribute, elementNS)
getAttributeType(tagName, attribute, elementNS, attrNS)tagNameA string containing the name of an HTML tag.
attributeA string containing an attribute.
elementNS OptionalA string containing a namespace, if empty defaults to the HTML namespace.
attrNS OptionalA string containing a namespace, if empty defaults to null.
A string with one of:
"TrustedHTML""TrustedScript""TrustedScriptURL"Or, null.
In this example, passing the <script> element and src attribute to getAttributeType() returns "TrustedScriptURL".
console.log(trustedTypes.getAttributeType("script", "src")); // "TrustedScriptURL"