Changeset 40627 in webkit


Ignore:
Timestamp:
Feb 4, 2009 1:12:26 PM (15 years ago)
Author:
sfalken@apple.com
Message:

Merge r40365.

Location:
branches/Safari-6528/WebKit/win
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/Safari-6528/WebKit/win

  • branches/Safari-6528/WebKit/win/ChangeLog

    r40626 r40627  
     12009-02-04  Steve Falkenburg  <sfalken@apple.com>
     2   
     3        Merge r40365.
     4
     5    2009-01-29  Adam Roben  <aroben@apple.com>
     6
     7        Build fix after r40353
     8
     9        * WebCoreSupport/WebFrameLoaderClient.cpp:
     10        (WebFrameLoaderClient::loadURLIntoChild): Removed the check for
     11        FrameLoadTypeReloadAllowingStaleData.
     12
    1132009-02-04  Steve Falkenburg  <sfalken@apple.com>
    214   
  • branches/Safari-6528/WebKit/win/WebCoreSupport

  • branches/Safari-6528/WebKit/win/WebCoreSupport/WebFrameLoaderClient.cpp

    r40597 r40627  
    605605    // of this child frame with whatever was there at that point.
    606606    // Reload will maintain the frame contents, LoadSame will not.
    607     if (parentItem && parentItem->children().size() &&
    608         (isBackForwardLoadType(loadType)
    609          || loadType == FrameLoadTypeReloadAllowingStaleData))
    610     {
     607    if (parentItem && parentItem->children().size() && isBackForwardLoadType(loadType)) {
    611608        if (HistoryItem* childItem = parentItem->childItemWithName(core(childFrame)->tree()->name())) {
    612609            // Use the original URL to ensure we get all the side-effects, such as
Note: See TracChangeset for help on using the changeset viewer.