From 52ddbc98ec87d3a8e7e5975c272d413170c53979 Mon Sep 17 00:00:00 2001 From: Krzysztof Kotowicz Date: Fri, 12 Jan 2024 15:26:48 +0100 Subject: [PATCH] Fix https://github.com/w3c/trusted-types/issues/388. --- spec/index.bs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/index.bs b/spec/index.bs index 39f3f22..228e5cb 100644 --- a/spec/index.bs +++ b/spec/index.bs @@ -758,9 +758,9 @@ object instances directly - this behavior is provided by
 dictionary TrustedTypePolicyOptions {
-   CreateHTMLCallback? createHTML;
-   CreateScriptCallback? createScript;
-   CreateScriptURLCallback? createScriptURL;
+   CreateHTMLCallback createHTML;
+   CreateScriptCallback createScript;
+   CreateScriptURLCallback createScriptURL;
 };
 callback CreateHTMLCallback = DOMString? (DOMString input, any... arguments);
 callback CreateScriptCallback = DOMString? (DOMString input, any... arguments);