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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 18:17:12 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c61449724f742555ff03f00c09ae0abea0f88c93
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 9 16:06:23 2010 +0000

    2010-12-09  Alex Bredariol Grilo  <abgrilo at profusion.mobi>
    
            Reviewed by Antonio Gomes.
    
            [EFL] Fix scroll operation in WebKit-EFL
            https://bugs.webkit.org/show_bug.cgi?id=50752
    
            Add the _ewk_view_scroll_add call in WebKit-EFL scroll function. This
            call was wrongly removed in previous commit and performs the scroll
            operation on the page.
    
            * ewk/ewk_view.cpp:
            (ewk_view_scroll):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73610 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/efl/ChangeLog b/WebKit/efl/ChangeLog
index cfb2f11..65aa95b 100644
--- a/WebKit/efl/ChangeLog
+++ b/WebKit/efl/ChangeLog
@@ -1,3 +1,17 @@
+2010-12-09  Alex Bredariol Grilo  <abgrilo at profusion.mobi>
+
+        Reviewed by Antonio Gomes.
+
+        [EFL] Fix scroll operation in WebKit-EFL
+        https://bugs.webkit.org/show_bug.cgi?id=50752
+
+        Add the _ewk_view_scroll_add call in WebKit-EFL scroll function. This
+        call was wrongly removed in previous commit and performs the scroll
+        operation on the page.
+
+        * ewk/ewk_view.cpp:
+        (ewk_view_scroll):
+
 2010-12-03  Alex Bredariol Grilo  <abgrilo at profusion.mobi>
 
         Reviewed by Andreas Kling.
diff --git a/WebKit/efl/ewk/ewk_view.cpp b/WebKit/efl/ewk/ewk_view.cpp
index 5147b6d..d1731e7 100644
--- a/WebKit/efl/ewk/ewk_view.cpp
+++ b/WebKit/efl/ewk/ewk_view.cpp
@@ -4075,6 +4075,8 @@ void ewk_view_scroll(Evas_Object* o, Evas_Coord dx, Evas_Coord dy, Evas_Coord sx
     EWK_VIEW_PRIV_GET_OR_RETURN(sd, priv);
     EINA_SAFETY_ON_TRUE_RETURN(!dx && !dy);
 
+    _ewk_view_scroll_add(priv, dx, dy, sx, sy, sw, sh, main_frame);
+
     _ewk_view_smart_changed(sd);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list