RESOLVED FIXED 63835
WorkerScriptLoader::notifyFinished() ASSERTs on re-entry
https://bugs.webkit.org/show_bug.cgi?id=63835
Summary WorkerScriptLoader::notifyFinished() ASSERTs on re-entry
Nate Chapin
Reported 2011-07-01 12:54:15 PDT
Specifically, WorkerScriptLoader::notifyFinished() will lead to unsetPendingAcitivity() being called for its ActiveDOMObject client. If it re-enters, activity is unset twice and we assert.
Attachments
patch (3.50 KB, patch)
2011-07-01 12:57 PDT, Nate Chapin
no flags
Nate Chapin
Comment 1 2011-07-01 12:57:03 PDT
Dmitry Titov
Comment 2 2011-07-01 14:07:58 PDT
Comment on attachment 99509 [details] patch r=me. Could you please add a description of a scenario when re-entrance happens in this bug? To document the case.
Nate Chapin
Comment 3 2011-07-01 14:08:26 PDT
(In reply to comment #2) > (From update of attachment 99509 [details]) > r=me. Could you please add a description of a scenario when re-entrance happens in this bug? To document the case. The sequence that causes this re-entrancy is: * WorkerScriptLoader fails, Worker::notifyFinished() is called. * notifyFinished() calls unsetPendingActivity() and fires the Worker's error event. * The error event cancels the load (e.g., window.stop). This causes DocumentLoader to cancel all SubresourceLoaders. * The WorkerScriptLoader's SubresourceLoader hasn't been removed from the DocumentLoader's list yet, so it is cancelled again, causing unsetPendingActivity() to be called a second time.
WebKit Review Bot
Comment 4 2011-07-01 15:06:20 PDT
Comment on attachment 99509 [details] patch Clearing flags on attachment: 99509 Committed r90284: <http://trac.webkit.org/changeset/90284>
WebKit Review Bot
Comment 5 2011-07-01 15:06:24 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.