Title: [133238] trunk/Source/WebCore
Revision
133238
Author
[email protected]
Date
2012-11-01 15:58:30 -0700 (Thu, 01 Nov 2012)

Log Message

Build fix after r133224 as suggested by Enrica.
Confirmed the test failures go away on Chromium Mac locally.

* page/EventHandler.cpp:
(WebCore::EventHandler::updateSelectionForMouseDrag):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (133237 => 133238)


--- trunk/Source/WebCore/ChangeLog	2012-11-01 22:58:04 UTC (rev 133237)
+++ trunk/Source/WebCore/ChangeLog	2012-11-01 22:58:30 UTC (rev 133238)
@@ -1,3 +1,11 @@
+2012-11-01  Ryosuke Niwa  <[email protected]>
+
+        Build fix after r133224 as suggested by Enrica.
+        Confirmed the test failures go away on Chromium Mac locally.
+
+        * page/EventHandler.cpp:
+        (WebCore::EventHandler::updateSelectionForMouseDrag):
+
 2012-11-01  Alexey Proskuryakov  <[email protected]>
 
         Rename HAVE(NETWORK_CFDATA_ARRAY_CALLBACK) to USE(NETWORK_CFDATA_ARRAY_CALLBACK)

Modified: trunk/Source/WebCore/page/EventHandler.cpp (133237 => 133238)


--- trunk/Source/WebCore/page/EventHandler.cpp	2012-11-01 22:58:04 UTC (rev 133237)
+++ trunk/Source/WebCore/page/EventHandler.cpp	2012-11-01 22:58:30 UTC (rev 133238)
@@ -869,7 +869,10 @@
         else
             newSelection.setExtent(targetPosition);
     }
+#else
+    newSelection.setExtent(targetPosition);
 #endif
+
     if (m_frame->selection()->granularity() != CharacterGranularity)
         newSelection.expandUsingGranularity(m_frame->selection()->granularity());
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to