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 getPropertyType() method of the TrustedTypePolicyFactory interface allows web developers to check if a Trusted Type is required for an element's property.
getPropertyType(tagName, property) getPropertyType(tagName, property, elementNS)
tagNameA string containing the name of an HTML tag.
propertyA string containing a property, for example "innerHTML".
elementNS OptionalA string containing a namespace, if empty defaults to the HTML namespace.
A string with one of:
"TrustedHTML""TrustedScript""TrustedScriptURL"Or, null.
In this example, passing the <div> element and innerHTML attribute to getPropertyType() returns "TrustedHTML".
console.log(trustedTypes.getPropertyType("div", "innerHTML")); // "TrustedHTML"
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
getPropertyType |
83 | 83 | 133 | 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/TrustedTypePolicyFactory/getPropertyType