Title: [133170] trunk/Source/WebKit2
Revision
133170
Author
[email protected]
Date
2012-11-01 07:56:16 -0700 (Thu, 01 Nov 2012)

Log Message

[EFL] Fix event mapping for WebKit2 with coordinated graphics
https://bugs.webkit.org/show_bug.cgi?id=100956

Reviewed by Alexis Menard.

Apply scale after translation.

* UIProcess/API/efl/ewk_view.cpp:
(toWebContentTransform):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (133169 => 133170)


--- trunk/Source/WebKit2/ChangeLog	2012-11-01 14:52:07 UTC (rev 133169)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-01 14:56:16 UTC (rev 133170)
@@ -1,5 +1,17 @@
 2012-11-01  Kenneth Rohde Christiansen  <[email protected]>
 
+        [EFL] Fix event mapping for WebKit2 with coordinated graphics
+        https://bugs.webkit.org/show_bug.cgi?id=100956
+
+        Reviewed by Alexis Menard.
+
+        Apply scale after translation.
+
+        * UIProcess/API/efl/ewk_view.cpp:
+        (toWebContentTransform):
+
+2012-11-01  Kenneth Rohde Christiansen  <[email protected]>
+
         [EFL] Correct our use of the coordinated graphics
         https://bugs.webkit.org/show_bug.cgi?id=100947
 

Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp (133169 => 133170)


--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-11-01 14:52:07 UTC (rev 133169)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-11-01 14:56:16 UTC (rev 133170)
@@ -204,9 +204,9 @@
     transform.translate(-smartData->view.x, -smartData->view.y);
 
 #if USE(TILED_BACKING_STORE)
-    transform.scale(1 / impl->pageViewportControllerClient()->scaleFactor());
     IntPoint scrollPos = impl->pageViewportControllerClient()->scrollPosition();
     transform.translate(scrollPos.x(), scrollPos.y());
+    transform.scale(1 / impl->pageViewportControllerClient()->scaleFactor());
 #endif
 
     return transform;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to