Changeset 63849 in webkit


Ignore:
Timestamp:
Jul 21, 2010 12:38:41 PM (14 years ago)
Author:
tonyg@chromium.org
Message:

2010-07-21 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

Disable overzealous ASSERT
https://bugs.webkit.org/show_bug.cgi?id=42775

No new tests because no changed functionality.

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::stopLoading):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63847 r63849  
     12010-07-21  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Unreviewed build fix.
     4
     5        Disable overzealous ASSERT
     6        https://bugs.webkit.org/show_bug.cgi?id=42775
     7
     8        No new tests because no changed functionality.
     9
     10        * loader/FrameLoader.cpp:
     11        (WebCore::FrameLoader::stopLoading):
     12
    1132010-07-21  Yael Aharon  <yael.aharon@nokia.com>
    214
  • trunk/WebCore/loader/FrameLoader.cpp

    r63844 r63849  
    452452                            DocumentLoadTiming* timing = m_provisionalDocumentLoader->timing();
    453453                            ASSERT(timing->navigationStart);
    454                             ASSERT(!timing->unloadEventEnd);
     454                            // FIXME: This fails in Safari (https://bugs.webkit.org/show_bug.cgi?id=42772). Understand why.
     455                            // ASSERT(!timing->unloadEventEnd);
    455456                            timing->unloadEventEnd = currentTime();
    456457                            ASSERT(timing->unloadEventEnd >= timing->navigationStart);
Note: See TracChangeset for help on using the changeset viewer.