RESOLVED FIXED 195195
Make sure to correctly notify of end of a ServiceWorkerJob when the context is stopped
https://bugs.webkit.org/show_bug.cgi?id=195195
Summary Make sure to correctly notify of end of a ServiceWorkerJob when the context i...
youenn fablet
Reported 2019-02-28 17:07:22 PST
Make sure to correctly notify of end of job when the context is stopped
Attachments
Patch (8.96 KB, patch)
2019-02-28 17:18 PST, youenn fablet
no flags
Patch (9.47 KB, patch)
2019-03-01 12:06 PST, youenn fablet
no flags
youenn fablet
Comment 1 2019-02-28 17:18:16 PST
Alex Christensen
Comment 2 2019-03-01 11:39:20 PST
Comment on attachment 363279 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=363279&action=review > Source/WebCore/ChangeLog:3 > + Make sure to correctly notify of end of job when the context is stopped This title should mention ServiceWorkerJob. Otherwise it's way too vague. > Source/WebCore/ChangeLog:14 > + Covered by existing tests not crashing anymore, in particular imported/w3c/web-platform-tests/service-workers/service-worker/skip-waiting.https.html. Should we unskip this test? > Source/WebCore/workers/service/ServiceWorkerJob.cpp:-172 > - if (!m_scriptLoader) Why can this no longer be null?
youenn fablet
Comment 3 2019-03-01 11:41:13 PST
(In reply to Alex Christensen from comment #2) > Comment on attachment 363279 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=363279&action=review > > > Source/WebCore/ChangeLog:3 > > + Make sure to correctly notify of end of job when the context is stopped > > This title should mention ServiceWorkerJob. Otherwise it's way too vague. > > > Source/WebCore/ChangeLog:14 > > + Covered by existing tests not crashing anymore, in particular imported/w3c/web-platform-tests/service-workers/service-worker/skip-waiting.https.html. > > Should we unskip this test? > > > Source/WebCore/workers/service/ServiceWorkerJob.cpp:-172 > > - if (!m_scriptLoader) > > Why can this no longer be null?
youenn fablet
Comment 4 2019-03-01 11:42:10 PST
> > > Source/WebCore/ChangeLog:3 > > > + Make sure to correctly notify of end of job when the context is stopped > > > > This title should mention ServiceWorkerJob. Otherwise it's way too vague. OK > > > Source/WebCore/ChangeLog:14 > > > + Covered by existing tests not crashing anymore, in particular imported/w3c/web-platform-tests/service-workers/service-worker/skip-waiting.https.html. > > > > Should we unskip this test? It is unskilled but crashes in debug sometimes. > > > Source/WebCore/workers/service/ServiceWorkerJob.cpp:-172 > > > - if (!m_scriptLoader) > > > > Why can this no longer be null? It is called in one place and we check for this before calling this method.
Chris Dumez
Comment 5 2019-03-01 11:46:13 PST
Comment on attachment 363279 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=363279&action=review > Source/WebCore/workers/service/ServiceWorkerContainer.h:151 > + uint64_t m_ongoingSettledRegistrationCount { 0 }; Bad name, when I saw it I was wondering why you needed this member and did not rely on m_ongoingSettledRegistrations.size() instead. We probably want to call it m_lastOngoingSettledRegistrationIdentifier, like the data member above.
youenn fablet
Comment 6 2019-03-01 12:06:51 PST
WebKit Commit Bot
Comment 7 2019-03-04 12:31:03 PST
Comment on attachment 363352 [details] Patch Clearing flags on attachment: 363352 Committed r242372: <https://trac.webkit.org/changeset/242372>
WebKit Commit Bot
Comment 8 2019-03-04 12:31:05 PST
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 9 2019-03-04 12:40:47 PST
Note You need to log in before you can comment on or make changes to this bug.