LibWeb: Add FIXME about Worker's constructor's scriptURL parameter

TrustedScriptURL is its own interface that we haven't implemented yet.
This commit is contained in:
Timothy Flynn 2025-05-02 10:28:54 -04:00 committed by Tim Flynn
commit 469d5ccc4b
Notes: github-actions[bot] 2025-05-02 21:49:10 +00:00

View file

@ -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();