Title: [144139] trunk/Source/WebCore
Revision
144139
Author
[email protected]
Date
2013-02-26 20:32:49 -0800 (Tue, 26 Feb 2013)

Log Message

Silence this ASSERT. It is triggered by the threaded HTML parser.
Investigation to follow in https://bugs.webkit.org/show_bug.cgi?id=110937

* loader/DocumentLoader.cpp:
(WebCore::DocumentLoader::checkLoadComplete):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (144138 => 144139)


--- trunk/Source/WebCore/ChangeLog	2013-02-27 04:26:28 UTC (rev 144138)
+++ trunk/Source/WebCore/ChangeLog	2013-02-27 04:32:49 UTC (rev 144139)
@@ -1,3 +1,11 @@
+2013-02-26  Adam Barth  <[email protected]>
+
+        Silence this ASSERT. It is triggered by the threaded HTML parser.
+        Investigation to follow in https://bugs.webkit.org/show_bug.cgi?id=110937
+
+        * loader/DocumentLoader.cpp:
+        (WebCore::DocumentLoader::checkLoadComplete):
+
 2013-02-26  Mark Lam  <[email protected]>
 
         SQLTransactionBackend::doCleanup() should not nullify its current

Modified: trunk/Source/WebCore/loader/DocumentLoader.cpp (144138 => 144139)


--- trunk/Source/WebCore/loader/DocumentLoader.cpp	2013-02-27 04:26:28 UTC (rev 144138)
+++ trunk/Source/WebCore/loader/DocumentLoader.cpp	2013-02-27 04:32:49 UTC (rev 144139)
@@ -431,7 +431,6 @@
 {
     if (!m_frame || isLoading())
         return;
-    ASSERT(this == frameLoader()->activeDocumentLoader());
     m_frame->document()->domWindow()->finishedLoading();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to