Title: [100038] trunk/Source/WebCore
Revision
100038
Author
[email protected]
Date
2011-11-11 15:44:59 -0800 (Fri, 11 Nov 2011)

Log Message

[Qt][WK2] Make sure Scrollbars are in their own layer.
https://bugs.webkit.org/show_bug.cgi?id=72064

Reviewed by Kenneth Rohde Christiansen.

Make sure we render our scrollbars in a separate layer.

No new tests : existing ones should cover.

* platform/qt/ScrollbarThemeQt.h:
(WebCore::ScrollbarThemeQt::usesOverlayScrollbars):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (100037 => 100038)


--- trunk/Source/WebCore/ChangeLog	2011-11-11 23:43:00 UTC (rev 100037)
+++ trunk/Source/WebCore/ChangeLog	2011-11-11 23:44:59 UTC (rev 100038)
@@ -1,3 +1,17 @@
+2011-11-11  Alexis Menard  <[email protected]>
+
+        [Qt][WK2] Make sure Scrollbars are in their own layer.
+        https://bugs.webkit.org/show_bug.cgi?id=72064
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Make sure we render our scrollbars in a separate layer.
+
+        No new tests : existing ones should cover.
+
+        * platform/qt/ScrollbarThemeQt.h:
+        (WebCore::ScrollbarThemeQt::usesOverlayScrollbars):
+
 2011-11-11  Joel Webber  <[email protected]>
 
         Repaint broken when children of filtered SVG elements are updated

Modified: trunk/Source/WebCore/platform/qt/ScrollbarThemeQt.h (100037 => 100038)


--- trunk/Source/WebCore/platform/qt/ScrollbarThemeQt.h	2011-11-11 23:43:00 UTC (rev 100037)
+++ trunk/Source/WebCore/platform/qt/ScrollbarThemeQt.h	2011-11-11 23:44:59 UTC (rev 100038)
@@ -56,6 +56,8 @@
 
     virtual int scrollbarThickness(ScrollbarControlSize = RegularScrollbar);
 
+    virtual bool usesOverlayScrollbars() const { return true; }
+
     QStyle* style() const;
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to