TrustedTypePolicyFactory.defaultPolicy
The defaultPolicy
read-only property of the TrustedTypePolicyFactory
interface returns the default TrustedTypePolicy
or null if this is empty.
Note: Information about the creation and use of default policies can be found in the createPolicy()
documentation.
Syntax
var defaultPolicy = TrustedTypePolicyFactory.defaultPolicy;
Value
A TrustedTypePolicy
or null.
Examples
The first line below returns null as no default policy has been created. Once a default policy is created, calling defaultPolicy
returns that policy object.
console.log(trustedTypes.defaultPolicy); // null const dp = trustedTypes.createPolicy('default', {}); console.log(trustedTypes.defaultPolicy); // a TrustedTypePolicy object
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
defaultPolicy |
83 |
83 |
No |
No |
69 |
No |
83 |
83 |
No |
59 |
No |
13.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TrustedTypePolicyFactory/defaultPolicy