From 469d5ccc4bdd88cbc223c93e9c0ad5546b6c0a75 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 2 May 2025 10:28:54 -0400 Subject: [PATCH] LibWeb: Add FIXME about Worker's constructor's scriptURL parameter TrustedScriptURL is its own interface that we haven't implemented yet. --- Libraries/LibWeb/HTML/Worker.idl | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibWeb/HTML/Worker.idl b/Libraries/LibWeb/HTML/Worker.idl index e5fa3b17b58..83d4207c17c 100644 --- a/Libraries/LibWeb/HTML/Worker.idl +++ b/Libraries/LibWeb/HTML/Worker.idl @@ -7,6 +7,7 @@ // https://html.spec.whatwg.org/multipage/workers.html#worker [Exposed=(Window,DedicatedWorker,SharedWorker)] interface Worker : EventTarget { + // FIXME: "DOMString scriptURL" should be "(TrustedScriptURL or USVString) scriptURL". constructor(DOMString scriptURL, optional WorkerOptions options = {}); undefined terminate();