[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:49:21 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 673f502a4cba2a46d959d68fd543be98ce922852
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 31 04:41:43 2010 +0000

    2010-08-30  Ryuan Choi  <ryuan.choi at samsung.com>
    
            Reviewed by Adam Barth.
    
            [EFL]Url of HistoryItem was broken for special character like korean
            https://bugs.webkit.org/show_bug.cgi?id=44495
    
            Remove unnecessary code. This makes a bug with complicated URL.
    
            * ewk/ewk_frame.cpp:
            (ewk_frame_view_state_save):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66451 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/efl/ChangeLog b/WebKit/efl/ChangeLog
index 5f4ae5f..5c62d84 100644
--- a/WebKit/efl/ChangeLog
+++ b/WebKit/efl/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-30  Ryuan Choi  <ryuan.choi at samsung.com>
+
+        Reviewed by Adam Barth.
+
+        [EFL]Url of HistoryItem was broken for special character like korean
+        https://bugs.webkit.org/show_bug.cgi?id=44495
+
+        Remove unnecessary code. This makes a bug with complicated URL.
+
+        * ewk/ewk_frame.cpp:
+        (ewk_frame_view_state_save):
+
 2010-08-30  Mikołaj Małecki  <m.malecki at samsung.com>
 
         Reviewed by Kenneth Rohde Christiansen
diff --git a/WebKit/efl/ewk/ewk_frame.cpp b/WebKit/efl/ewk/ewk_frame.cpp
index 7a2af5a..5275bf3 100644
--- a/WebKit/efl/ewk/ewk_frame.cpp
+++ b/WebKit/efl/ewk/ewk_frame.cpp
@@ -1687,12 +1687,6 @@ void ewk_frame_did_perform_first_navigation(Evas_Object *o)
  */
 void ewk_frame_view_state_save(Evas_Object *o, WebCore::HistoryItem* item)
 {
-    const char *title = ewk_frame_title_get(o);
-    const char *uri = ewk_frame_uri_get(o);
-
-    item->setTitle(WTF::String::fromUTF8(title));
-    item->setURLString(WTF::String::fromUTF8(uri));
-
     evas_object_smart_callback_call(o, "state,save", 0);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list