[Webkit-unassigned] [Bug 261377] New: Propagate active script for import() through setTimeout and other string evaluators

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Sep 9 15:01:51 PDT 2023


https://bugs.webkit.org/show_bug.cgi?id=261377

            Bug ID: 261377
           Summary: Propagate active script for import() through
                    setTimeout and other string evaluators
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: d at domenic.me

See various string-compilation-* tests at https://wpt.fyi/results/html/semantics/scripting-1/the-script-element/module/dynamic-import?label=master&label=experimental&product=chrome&product=firefox&product=safari&aligned&q=%2Fhtml%2Fsemantics%2Fscripting-1%2Fthe-script-element%2Fmodule%2Fdynamic-import%2F , plus the new one I'm adding at https://github.com/web-platform-tests/wpt/pull/41895 .

The basic goal is that things like

eval(`import("./some-relative-url.mjs")`);

or

setTimeout(`import("./some-relative-url.mjs")`);

should behave the same as

import("./some-relative-url.mjs");

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20230909/3b809110/attachment.htm>


More information about the webkit-unassigned mailing list