Title: [150689] trunk/Source/WebKit2
Revision
150689
Author
[email protected]
Date
2013-05-25 11:35:45 -0700 (Sat, 25 May 2013)

Log Message

WebFrameProxy::didFailLoad clears frame title for no apparent reason
https://bugs.webkit.org/show_bug.cgi?id=116655

Patch by Santosh Mahto <[email protected]> on 2013-05-25
Reviewed by Alexey Proskuryakov.

* UIProcess/WebFrameProxy.cpp:
(WebKit::WebFrameProxy::didFailLoad):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (150688 => 150689)


--- trunk/Source/WebKit2/ChangeLog	2013-05-25 17:57:19 UTC (rev 150688)
+++ trunk/Source/WebKit2/ChangeLog	2013-05-25 18:35:45 UTC (rev 150689)
@@ -1,3 +1,13 @@
+2013-05-25  Santosh Mahto  <[email protected]>
+
+        WebFrameProxy::didFailLoad clears frame title for no apparent reason
+        https://bugs.webkit.org/show_bug.cgi?id=116655
+
+        Reviewed by Alexey Proskuryakov.
+
+        * UIProcess/WebFrameProxy.cpp:
+        (WebKit::WebFrameProxy::didFailLoad):
+
 2013-05-24  Seokju Kwon  <[email protected]>
 
         [Qt][GTK] Build fix after r150669

Modified: trunk/Source/WebKit2/UIProcess/WebFrameProxy.cpp (150688 => 150689)


--- trunk/Source/WebKit2/UIProcess/WebFrameProxy.cpp	2013-05-25 17:57:19 UTC (rev 150688)
+++ trunk/Source/WebKit2/UIProcess/WebFrameProxy.cpp	2013-05-25 18:35:45 UTC (rev 150689)
@@ -162,7 +162,6 @@
     ASSERT(m_loadState == LoadStateCommitted);
     ASSERT(m_provisionalURL.isEmpty());
     m_loadState = LoadStateFinished;
-    m_title = String();
 }
 
 void WebFrameProxy::didSameDocumentNavigation(const String& url)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to