Reviewed by Dave Hyatt.

        - fix https://bugs.webkit.org/show_bug.cgi?id=21024
          <rdar://problem/6240821> Scrollbar not painted until hovered

        * rendering/RenderWidget.cpp:
        (WebCore::RenderWidget::setWidgetGeometry): Replaced resizeWidget with
        this method, which sets both the location and the size.
        (WebCore::RenderWidget::setWidget): Replaced the call to resizeWidget
        with a call to the new method setWidgetGeometry. Positioning the
        widget correctly ensures that the scroll bars invalidate correctly when
        they are created and resized.
        * rendering/RenderWidget.h:



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@36885 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d776a89..05a3edd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,19 @@
+2008-09-25  Dan Bernstein  <mitz@apple.com>
+
+        Reviewed by Dave Hyatt.
+
+        - fix https://bugs.webkit.org/show_bug.cgi?id=21024
+          <rdar://problem/6240821> Scrollbar not painted until hovered
+
+        * rendering/RenderWidget.cpp:
+        (WebCore::RenderWidget::setWidgetGeometry): Replaced resizeWidget with
+        this method, which sets both the location and the size.
+        (WebCore::RenderWidget::setWidget): Replaced the call to resizeWidget
+        with a call to the new method setWidgetGeometry. Positioning the
+        widget correctly ensures that the scroll bars invalidate correctly when
+        they are created and resized.
+        * rendering/RenderWidget.h:
+
 2008-09-24  Dan Bernstein  <mitz@apple.com>
 
         Rubber-stamped by Sam Weinig.