Fix incorrect assertion causing all pages with subframes to crash.
authorweinig@apple.com <weinig@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 23 Dec 2010 22:49:10 +0000 (22:49 +0000)
committerweinig@apple.com <weinig@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 23 Dec 2010 22:49:10 +0000 (22:49 +0000)
* UIProcess/WebFrameProxy.cpp:
(WebKit::WebFrameProxy::appendChild):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74584 268f45cc-cd09-0410-ab3c-d52691b4dbfc

WebKit2/ChangeLog
WebKit2/UIProcess/WebFrameProxy.cpp

index 9e52b31..b2591ca 100644 (file)
@@ -1,3 +1,10 @@
+2010-12-23  Sam Weinig  <sam@webkit.org>
+
+        Fix incorrect assertion causing all pages with subframes to crash.
+
+        * UIProcess/WebFrameProxy.cpp:
+        (WebKit::WebFrameProxy::appendChild):
+
 2010-12-23  Anders Carlsson  <andersca@apple.com>
 
         Reviewed by Darin Adler.
index 23dc740..d3a36f9 100644 (file)
@@ -189,11 +189,11 @@ void WebFrameProxy::appendChild(WebFrameProxy* child)
 
     child->m_parentFrame = this;
 
-    ASSERT(!m_lastChild->m_nextSibling);
     WebFrameProxy* oldLast = m_lastChild;
     m_lastChild = child;
 
     if (oldLast) {
+        ASSERT(!oldLast->m_nextSibling);
         child->m_previousSibling = oldLast;
         oldLast->m_nextSibling = child;
     } else