diff options
author | 2024-03-18 00:45:41 +0100 | |
---|---|---|
committer | 2024-03-20 17:50:37 -0700 | |
commit | ed2077119491bcc198ae84df5b1b1ed6f13f78f1 (patch) | |
tree | 408252a9571f8b28a9fda14b9949bd73831a5d28 /internal/ui/static/js/tt.js | |
parent | beb8c80787beadbfdb8b970368a3200f7d59f58e (diff) | |
download | v2-ed2077119491bcc198ae84df5b1b1ed6f13f78f1.tar.gz v2-ed2077119491bcc198ae84df5b1b1ed6f13f78f1.tar.zst v2-ed2077119491bcc198ae84df5b1b1ed6f13f78f1.zip |
Enable trusted-types
This commit adds a policy, and make use of it in the Content-Security-Policy.
I've tested it the best I could, both on a modern browser supporting
trusted-types (Chrome) and on one that doesn't (firefox).
Thanks to @lweichselbaum for giving me a hand to wrap this up!
Diffstat (limited to 'internal/ui/static/js/tt.js')
-rw-r--r-- | internal/ui/static/js/tt.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/ui/static/js/tt.js b/internal/ui/static/js/tt.js new file mode 100644 index 00000000..f42cc47a --- /dev/null +++ b/internal/ui/static/js/tt.js @@ -0,0 +1,15 @@ +let ttpolicy; +if (window.trustedTypes && trustedTypes.createPolicy) { + //TODO: use an allow-list for `createScriptURL` + if (!ttpolicy) { + ttpolicy = trustedTypes.createPolicy('ttpolicy', { + createScriptURL: src => src, + createHTML: html => html, + }); + } +} else { + ttpolicy = { + createScriptURL: src => src, + createHTML: html => html, + }; +} |