Title: [122701] trunk/Source/WebCore
Revision
122701
Author
[email protected]
Date
2012-07-16 00:24:17 -0700 (Mon, 16 Jul 2012)

Log Message

Unreviewed, rolling out r122681.
http://trac.webkit.org/changeset/122681
https://bugs.webkit.org/show_bug.cgi?id=91363

Patch introduces crashes in debug builds for GTK and EFL ports
(Requested by zdobersek on #webkit).

Patch by Sheriff Bot <[email protected]> on 2012-07-16

* platform/ScrollableArea.cpp:
(WebCore::ScrollableArea::scrollPositionChanged):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122700 => 122701)


--- trunk/Source/WebCore/ChangeLog	2012-07-16 07:11:03 UTC (rev 122700)
+++ trunk/Source/WebCore/ChangeLog	2012-07-16 07:24:17 UTC (rev 122701)
@@ -1,3 +1,15 @@
+2012-07-16  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r122681.
+        http://trac.webkit.org/changeset/122681
+        https://bugs.webkit.org/show_bug.cgi?id=91363
+
+        Patch introduces crashes in debug builds for GTK and EFL ports
+        (Requested by zdobersek on #webkit).
+
+        * platform/ScrollableArea.cpp:
+        (WebCore::ScrollableArea::scrollPositionChanged):
+
 2012-07-16  Luke Macpherson  <[email protected]>
 
         Compilation failure in StyleResolver.cpp (clang)

Modified: trunk/Source/WebCore/platform/ScrollableArea.cpp (122700 => 122701)


--- trunk/Source/WebCore/platform/ScrollableArea.cpp	2012-07-16 07:11:03 UTC (rev 122700)
+++ trunk/Source/WebCore/platform/ScrollableArea.cpp	2012-07-16 07:24:17 UTC (rev 122701)
@@ -142,13 +142,9 @@
 
 void ScrollableArea::scrollPositionChanged(const IntPoint& position)
 {
-    IntPoint oldPosition = scrollPosition();
     // Tell the derived class to scroll its contents.
     setScrollOffset(position);
 
-    if (scrollPosition() == oldPosition)
-        return;
-
     Scrollbar* verticalScrollbar = this->verticalScrollbar();
 
     // Tell the scrollbars to update their thumb postions.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to