| Index: Source/core/workers/WorkerScriptLoader.cpp
|
| diff --git a/Source/core/workers/WorkerScriptLoader.cpp b/Source/core/workers/WorkerScriptLoader.cpp
|
| index ec75c5e063dbc16bfbb74f746c39348d7aa1c038..7feac230f0e48f75f14683e4b22a7900b823c268 100644
|
| --- a/Source/core/workers/WorkerScriptLoader.cpp
|
| +++ b/Source/core/workers/WorkerScriptLoader.cpp
|
| @@ -101,7 +101,8 @@ void WorkerScriptLoader::loadAsynchronously(ExecutionContext& executionContext,
|
| resourceLoaderOptions.allowCredentials = AllowStoredCredentials;
|
|
|
| m_needToCancel = true;
|
| - m_threadableLoader = ThreadableLoader::create(executionContext, this, *request, options, resourceLoaderOptions);
|
| + m_threadableLoader = ThreadableLoader::create(executionContext, this, options, resourceLoaderOptions);
|
| + m_threadableLoader->start(*request);
|
| if (m_failed)
|
| notifyFinished();
|
| // Do nothing here since notifyFinished() could delete |this|.
|
|
|