File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ void Worker::visit_edges(Cell::Visitor& visitor)
4646// https://whatpr.org/html/9893/workers.html#dom-worker
4747WebIDL::ExceptionOr<GC::Ref<Worker>> Worker::create (TrustedTypes::TrustedScriptURLOrString const & script_url, WorkerOptions const & options, DOM::Document& document)
4848{
49- dbgln_if (WEB_WORKER_DEBUG, " WebWorker: Creating worker with script_url = {}" , script_url);
50-
5149 // Returns a new Worker object. scriptURL will be fetched and executed in the background,
5250 // creating a new global environment for which worker represents the communication channel.
5351 // options can be used to define the name of that global environment via the name option,
@@ -64,6 +62,8 @@ WebIDL::ExceptionOr<GC::Ref<Worker>> Worker::create(TrustedTypes::TrustedScriptU
6462 TrustedTypes::InjectionSink::Workerconstructor,
6563 TrustedTypes::Script.to_string ()));
6664
65+ dbgln_if (WEB_WORKER_DEBUG, " WebWorker: Creating worker with compliant_script_url = {}" , compliant_script_url);
66+
6767 // 2. Let outside settings be the current principal settings object.
6868 auto & outside_settings = current_principal_settings_object ();
6969
You can’t perform that action at this time.
0 commit comments