You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The spec trend is now to start with lowercase, so window.trustedTypes instead of window.TrustedTypes.
We should perform the rename as the last step after building + speccing all existing features, such that window.trustedTypes has stable features, unlike the current API that is under active development.
Note to authors: Please feature check before using the API i.e. check that window.TrustedTypes.createPolicy exists before calling it.
The text was updated successfully, but these errors were encountered:
Fixed#177.
The polyfill will copy existing (i.e. native) window.TrustedTypes to window.trustedTypes.
Please use window.trustedTypes or (window.trustedTypes || window.TrustedTypes) from now on.
The spec trend is now to start with lowercase, so
window.trustedTypes
instead ofwindow.TrustedTypes
.We should perform the rename as the last step after building + speccing all existing features, such that
window.trustedTypes
has stable features, unlike the current API that is under active development.Note to authors: Please feature check before using the API i.e. check that
window.TrustedTypes.createPolicy
exists before calling it.The text was updated successfully, but these errors were encountered: