Changeset 141462 in webkit


Ignore:
Timestamp:
Jan 31, 2013 12:38:19 PM (11 years ago)
Author:
mjs@apple.com
Message:

REGRESSION (r138962): Fails to show "confirm form resubmission", hangs browser
https://bugs.webkit.org/show_bug.cgi?id=108214

Reviewed by Adam Barth.

Attempt a workaround suggested by Nate Chapin by putting some code
in #ifdef !PLATFORM(CHROMIUM).

  • loader/MainResourceLoader.cpp:

(WebCore::MainResourceLoader::notifyFinished):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r141459 r141462  
     12013-01-31  Maciej Stachowiak  <mjs@apple.com>
     2
     3        REGRESSION (r138962): Fails to show "confirm form resubmission", hangs browser
     4        https://bugs.webkit.org/show_bug.cgi?id=108214
     5
     6        Reviewed by Adam Barth.
     7       
     8        Attempt a workaround suggested by Nate Chapin by putting some code
     9        in #ifdef !PLATFORM(CHROMIUM).
     10
     11        * loader/MainResourceLoader.cpp:
     12        (WebCore::MainResourceLoader::notifyFinished):
     13
    1142013-01-31  Ojan Vafai  <ojan@chromium.org>
    215
  • trunk/Source/WebCore/loader/MainResourceLoader.cpp

    r141136 r141462  
    577577    }
    578578
     579    // FIXME: we should fix the design to eliminate the need for a platform ifdef here
     580#if !PLATFORM(CHROMIUM)
    579581    if (m_documentLoader->request().cachePolicy() == ReturnCacheDataDontLoad && !m_resource->wasCanceled()) {
    580582        frameLoader()->retryAfterFailedCacheOnlyMainResourceLoad();
    581583        return;
    582584    }
     585#endif
    583586
    584587    const ResourceError& error = m_resource->resourceError();
Note: See TracChangeset for help on using the changeset viewer.