Changeset 145752 in webkit
- Timestamp:
- Mar 13, 2013, 2:27:21 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r145750 r145752 1 2013-03-13 Nate Chapin <japhet@chromium.org> 2 3 chromium's WebFrameTest.ReplaceNavigationAfterHistoryNavigation failing after r145734 4 https://bugs.webkit.org/show_bug.cgi?id=112281 5 6 Reviewed by Adam Barth. 7 8 Fixes the aforementioned chromiun webkit_unit_test 9 10 * loader/DocumentLoader.cpp: 11 (WebCore::DocumentLoader::maybeFinishLoadingMultipartContent): FrameLoader::isReplacing() is not quite 12 synonymous with loading multipart content. Check that it's actually loading multipart before doing 13 multipart-specific things. 14 1 15 2013-03-13 Tao Bai <michaelbai@chromium.org> 2 16 -
trunk/Source/WebCore/loader/DocumentLoader.cpp
r145734 r145752 1048 1048 void DocumentLoader::maybeFinishLoadingMultipartContent() 1049 1049 { 1050 if (! frameLoader()->isReplacing())1050 if (!isMultipartReplacingLoad()) 1051 1051 return; 1052 1052
Note:
See TracChangeset
for help on using the changeset viewer.