Changeset 144232 in webkit


Ignore:
Timestamp:
Feb 27, 2013 1:23:05 PM (11 years ago)
Author:
abarth@webkit.org
Message:

Threaded HTML parser hits ASSERTION FAILED: this == frameLoader()->activeDocumentLoader()
https://bugs.webkit.org/show_bug.cgi?id=110937

Reviewed by Darin Adler.

This patch restores the ASSERT behind an ifdef so that we can continue
to get converage from the ASSERT while we investigate why it is
triggering in the threaded parser.

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::checkLoadComplete):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r144229 r144232  
     12013-02-27  Adam Barth  <abarth@webkit.org>
     2
     3        Threaded HTML parser hits ASSERTION FAILED: this == frameLoader()->activeDocumentLoader()
     4        https://bugs.webkit.org/show_bug.cgi?id=110937
     5
     6        Reviewed by Darin Adler.
     7
     8        This patch restores the ASSERT behind an ifdef so that we can continue
     9        to get converage from the ASSERT while we investigate why it is
     10        triggering in the threaded parser.
     11
     12        * loader/DocumentLoader.cpp:
     13        (WebCore::DocumentLoader::checkLoadComplete):
     14
    1152013-02-27  Lianghui Chen  <liachen@rim.com>
    216
  • trunk/Source/WebCore/loader/DocumentLoader.cpp

    r144139 r144232  
    432432    if (!m_frame || isLoading())
    433433        return;
     434#if !ENABLE(THREADED_HTML_PARSER)
     435    // This ASSERT triggers with the threaded HTML parser.
     436    // See https://bugs.webkit.org/show_bug.cgi?id=110937
     437    ASSERT(this == frameLoader()->activeDocumentLoader());
     438#endif
    434439    m_frame->document()->domWindow()->finishedLoading();
    435440}
Note: See TracChangeset for help on using the changeset viewer.