RESOLVED FIXED Bug 181840
Release ASSERT when reloading Vimeo page @ WebCore: WebCore::Document::updateLayout
https://bugs.webkit.org/show_bug.cgi?id=181840
Summary Release ASSERT when reloading Vimeo page @ WebCore: WebCore::Document::update...
Jer Noble
Reported 2018-01-18 23:15:00 PST
Release ASSERT when reloading Vimeo page @ WebCore: WebCore::Document::updateLayout
Attachments
Patch (6.36 KB, patch)
2018-01-18 23:19 PST, Jer Noble
no flags
Archive of layout-test-results from ews123 for ios-simulator-wk2 (8.36 MB, application/zip)
2018-01-19 00:55 PST, EWS Watchlist
no flags
Patch for landing (7.03 KB, patch)
2018-01-19 14:53 PST, Jer Noble
no flags
Archive of layout-test-results from ews126 for ios-simulator-wk2 (8.40 MB, application/zip)
2018-01-19 16:51 PST, EWS Watchlist
no flags
Patch for landing (8.09 KB, patch)
2018-01-19 22:58 PST, Jer Noble
no flags
Jer Noble
Comment 1 2018-01-18 23:15:29 PST
Jer Noble
Comment 2 2018-01-18 23:19:17 PST
EWS Watchlist
Comment 3 2018-01-19 00:55:40 PST
Comment on attachment 331712 [details] Patch Attachment 331712 [details] did not pass ios-sim-ews (ios-simulator-wk2): Output: http://webkit-queues.webkit.org/results/6131807 New failing tests: media/video-fullscreen-reload-crash.html
EWS Watchlist
Comment 4 2018-01-19 00:55:42 PST
Created attachment 331714 [details] Archive of layout-test-results from ews123 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews123 Port: ios-simulator-wk2 Platform: Mac OS X 10.12.6
Simon Fraser (smfr)
Comment 5 2018-01-19 11:01:51 PST
Comment on attachment 331712 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=331712&action=review > Source/WebKit/WebProcess/cocoa/VideoFullscreenManager.mm:62 > + if (document.activeDOMObjectsAreSuspended() || document.activeDOMObjectsAreStopped()) It's not obvious why active DOM objects being suspended means that you can't do layout. What does it mean for an "active" DOM object to be suspended? Is that reflecting some higher-level state (being in the page cache?) that we should be checking for?
Jer Noble
Comment 6 2018-01-19 11:41:54 PST
(In reply to Simon Fraser (smfr) from comment #5) > Comment on attachment 331712 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=331712&action=review > > > Source/WebKit/WebProcess/cocoa/VideoFullscreenManager.mm:62 > > + if (document.activeDOMObjectsAreSuspended() || document.activeDOMObjectsAreStopped()) > > It's not obvious why active DOM objects being suspended means that you can't > do layout. What does it mean for an "active" DOM object to be suspended? Is > that reflecting some higher-level state (being in the page cache?) that we > should be checking for? It hits " RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(isSafeToUpdateStyleOrLayout())" in Document::updateLayout(). isSafeToUpdateStyleOrLayout() itself calls ScriptDisallowedScope::InMainThread::isScriptAllowed(), which is set by ScriptExecutionContext() while stopping ActiveDOMObjects. So I suppose we could check Document:: isSafeToUpdateStyleOrLayout() instead.
Simon Fraser (smfr)
Comment 7 2018-01-19 11:45:11 PST
That's what (Z)Alan suggests.
Jer Noble
Comment 8 2018-01-19 14:53:04 PST
Created attachment 331792 [details] Patch for landing
EWS Watchlist
Comment 9 2018-01-19 16:51:22 PST
Comment hidden (obsolete)
EWS Watchlist
Comment 10 2018-01-19 16:51:23 PST
Comment hidden (obsolete)
Jer Noble
Comment 11 2018-01-19 22:58:43 PST
Created attachment 331834 [details] Patch for landing
WebKit Commit Bot
Comment 12 2018-01-20 08:55:49 PST
Comment on attachment 331834 [details] Patch for landing Clearing flags on attachment: 331834 Committed r227272: <https://trac.webkit.org/changeset/227272>
WebKit Commit Bot
Comment 13 2018-01-20 08:55:51 PST
All reviewed patches have been landed. Closing bug.
Ryosuke Niwa
Comment 14 2018-02-05 13:34:48 PST
Comment on attachment 331712 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=331712&action=review >>> Source/WebKit/WebProcess/cocoa/VideoFullscreenManager.mm:62 >>> + if (document.activeDOMObjectsAreSuspended() || document.activeDOMObjectsAreStopped()) >> >> It's not obvious why active DOM objects being suspended means that you can't do layout. What does it mean for an "active" DOM object to be suspended? Is that reflecting some higher-level state (being in the page cache?) that we should be checking for? > > It hits " RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(isSafeToUpdateStyleOrLayout())" in Document::updateLayout(). isSafeToUpdateStyleOrLayout() itself calls ScriptDisallowedScope::InMainThread::isScriptAllowed(), which is set by ScriptExecutionContext() while stopping ActiveDOMObjects. > > So I suppose we could check Document:: isSafeToUpdateStyleOrLayout() instead. I think this check would have been better.
Ryosuke Niwa
Comment 15 2018-02-05 13:36:01 PST
Comment on attachment 331712 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=331712&action=review >>>> Source/WebKit/WebProcess/cocoa/VideoFullscreenManager.mm:62 >>>> + if (document.activeDOMObjectsAreSuspended() || document.activeDOMObjectsAreStopped()) >>> >>> It's not obvious why active DOM objects being suspended means that you can't do layout. What does it mean for an "active" DOM object to be suspended? Is that reflecting some higher-level state (being in the page cache?) that we should be checking for? >> >> It hits " RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(isSafeToUpdateStyleOrLayout())" in Document::updateLayout(). isSafeToUpdateStyleOrLayout() itself calls ScriptDisallowedScope::InMainThread::isScriptAllowed(), which is set by ScriptExecutionContext() while stopping ActiveDOMObjects. >> >> So I suppose we could check Document:: isSafeToUpdateStyleOrLayout() instead. > > I think this check would have been better. Another check would have been to check the presence of RenderView. At this point, the render view had been destroyed.
Note You need to log in before you can comment on or make changes to this bug.