Title: [115738] branches/subpixellayout/Source/WebKit/efl/ewk/ewk_frame.cpp
Revision
115738
Author
[email protected]
Date
2012-05-01 11:18:19 -0700 (Tue, 01 May 2012)

Log Message

Fixing a pixel snapping/build issue in EFL.

Modified Paths


Diff

Modified: branches/subpixellayout/Source/WebKit/efl/ewk/ewk_frame.cpp (115737 => 115738)


--- branches/subpixellayout/Source/WebKit/efl/ewk/ewk_frame.cpp	2012-05-01 18:04:48 UTC (rev 115737)
+++ branches/subpixellayout/Source/WebKit/efl/ewk/ewk_frame.cpp	2012-05-01 18:18:19 UTC (rev 115738)
@@ -861,7 +861,7 @@
     WebCore::Node* focusedNode = document->focusedNode();
     if (!focusedNode)
         return false;
-    WebCore::IntRect nodeRect = focusedNode->getRect();
+    WebCore::IntRect nodeRect = focusedNode->getPixelSnappedRect();
     if (x)
         *x = nodeRect.x();
     if (y)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to