The getPropertyType()
method of the TrustedTypePolicyFactory
interface allows web developers to check if a Trusted Type is required for an element's property.
The getPropertyType()
method of the TrustedTypePolicyFactory
interface allows web developers to check if a Trusted Type is required for an element's property.
js
getPropertyType(tagName, property) getPropertyType(tagName, property, elementNS)
A string with one of:
"TrustedHTML"
"TrustedScript"
"TrustedScriptURL"
Or, null.
In this example, passing the <div>
element and innerHTML
property to getPropertyType
returns "TrustedHTML".
js
console.log(trustedTypes.getPropertyType("div", "innerHTML")); // "TrustedHTML"
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
getPropertyType |
83 | 83 | No | No | 69 | No | 83 | 83 | No | 59 | No | 13.0 |
© 2005–2023 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