Title: [115823] trunk/Source/WebCore
- Revision
- 115823
- Author
- [email protected]
- Date
- 2012-05-02 06:41:29 -0700 (Wed, 02 May 2012)
Log Message
https://bugs.webkit.org/show_bug.cgi?id=85309
supportsExpandedScrollbars() should check for the method we actually call rather
than a related method
-and corresponding-
<rdar://problem/11065691>
Reviewed by Anders Carlsson.
* platform/mac/ScrollbarThemeMac.mm:
(WebCore::supportsExpandedScrollbars):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (115822 => 115823)
--- trunk/Source/WebCore/ChangeLog 2012-05-02 13:37:24 UTC (rev 115822)
+++ trunk/Source/WebCore/ChangeLog 2012-05-02 13:41:29 UTC (rev 115823)
@@ -1,3 +1,16 @@
+2012-05-02 Beth Dakin <[email protected]>
+
+ https://bugs.webkit.org/show_bug.cgi?id=85309
+ supportsExpandedScrollbars() should check for the method we actually call rather
+ than a related method
+ -and corresponding-
+ <rdar://problem/11065691>
+
+ Reviewed by Anders Carlsson.
+
+ * platform/mac/ScrollbarThemeMac.mm:
+ (WebCore::supportsExpandedScrollbars):
+
2012-05-02 Zalan Bujtas <[email protected]>
[Qt] Remove redundant updateViewportArguments() call from HTMLBodyElement::didNotifyDescendantInseretions()
Modified: trunk/Source/WebCore/platform/mac/ScrollbarThemeMac.mm (115822 => 115823)
--- trunk/Source/WebCore/platform/mac/ScrollbarThemeMac.mm 2012-05-02 13:37:24 UTC (rev 115822)
+++ trunk/Source/WebCore/platform/mac/ScrollbarThemeMac.mm 2012-05-02 13:41:29 UTC (rev 115823)
@@ -140,7 +140,7 @@
static bool supportsExpandedScrollbars()
{
// FIXME: This is temporary until all platforms that support ScrollbarPainter support this part of the API.
- static bool globalSupportsExpandedScrollbars = [NSClassFromString(@"NSScrollerImp") instancesRespondToSelector:@selector(isExpanded)];
+ static bool globalSupportsExpandedScrollbars = [NSClassFromString(@"NSScrollerImp") instancesRespondToSelector:@selector(setExpanded)];
return globalSupportsExpandedScrollbars;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes