Changeset 63699 in webkit


Ignore:
Timestamp:
Jul 19, 2010 4:54:07 PM (14 years ago)
Author:
tonyg@chromium.org
Message:

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

Unreviewed build fix.

Remove overzealous ASSERT from r63689
https://bugs.webkit.org/show_bug.cgi?id=42606

No new tests because no new functionality.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63696 r63699  
     12010-07-19  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Unreviewed build fix.
     4
     5        Remove overzealous ASSERT from r63689
     6        https://bugs.webkit.org/show_bug.cgi?id=42606
     7
     8        No new tests because no new functionality.
     9
     10        * loader/FrameLoader.cpp:
     11        (WebCore::FrameLoader::stopLoading):
     12
    1132010-07-19  Joseph Pecoraro  <joepeck@webkit.org>
    214
  • trunk/WebCore/loader/FrameLoader.cpp

    r63689 r63699  
    453453                        DocumentLoadTiming* timing = m_provisionalDocumentLoader->timing();
    454454                        ASSERT(timing->navigationStart);
    455                         ASSERT(!timing->unloadEventEnd);
     455                        // FIXME: This fails. Understand why.
     456                        // ASSERT(!timing->unloadEventEnd);
    456457                        timing->unloadEventEnd = currentTime();
    457458                        ASSERT(timing->unloadEventEnd >= timing->navigationStart);
Note: See TracChangeset for help on using the changeset viewer.