Summary: | WebContent crash in WebCore::Page::sessionID() const + 0 (Page.cpp:1660) | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Chris Dumez <cdumez> | ||||||
Component: | Page Loading | Assignee: | Chris Dumez <cdumez> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | ap, barraclough, beidson, commit-queue, ddkilzer, japhet | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | 528+ (Nightly build) | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
See Also: |
https://bugs.webkit.org/show_bug.cgi?id=145422 https://bugs.webkit.org/show_bug.cgi?id=146299 |
||||||||
Attachments: |
|
Description
Chris Dumez
2015-06-07 17:42:19 PDT
Created attachment 254474 [details]
Patch
Comment on attachment 254474 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=254474&action=review > Source/WebCore/ChangeLog:11 > + We would sometimes crash when pruning the PageCache because it was > + possible for frames to still be loading while in the PageCache and > + we would try to stop the load when the CachedFrame. This code path when the CachedFrame... what? Is constructed? > Source/WebCore/page/Page.h:160 > + enum DismissalType { > + NoDismissal, > + BeforeUnloadDismissal, > + PageHideDismissal, > + UnloadDismissal > + }; enum class, please! With updated names: enum class DismissalType { None, BeforeUnload, PageHide, Unload } Created attachment 254518 [details]
Patch
Comment on attachment 254518 [details] Patch Clearing flags on attachment: 254518 Committed r185337: <http://trac.webkit.org/changeset/185337> All reviewed patches have been landed. Closing bug. |