From 66216b445cb9e5fe5701ea234cd75af719bf4e34 Mon Sep 17 00:00:00 2001 From: Antonio Sartori Date: Mon, 4 Sep 2023 10:33:52 +0200 Subject: [PATCH] [editorial] Add missing semicolons in example CSP (#619) --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 1767018ba4..c87b4f39a2 100644 --- a/index.bs +++ b/index.bs @@ -5008,7 +5008,7 @@ this algorithm returns normally if compilation is allowed, and throws a [[!HTML]]
-        Content-Security-Policy: img-src 'none' script-src 'none' font-src 'none'
+        Content-Security-Policy: img-src 'none'; script-src 'none'; font-src 'none'
       
Supplementing this policy with `default-src 'none'` would improve the page's robustness