https://bugs.webkit.org/show_bug.cgi?id=70891
Reviewed by Anders Carlsson.
* platform/mac/ThemeMac.mm:
(WebCore::ThemeMac::ensuredView): Set the WebCoreFlippedView’s size, because NSSliderCell
always shrinks the slider thumb to fit in the control view’s bounds.
* rendering/RenderThemeMac.mm:
(WebCore::RenderThemeMac::paintSliderThumb): Removed workaround code no longer needed after
r97032.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@98520
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-10-26 Dan Bernstein <mitz@apple.com>
+
+ <rdar://problem/10350775> REGRESSION (r97032): Slider thumb is not drawn
+ https://bugs.webkit.org/show_bug.cgi?id=70891
+
+ Reviewed by Anders Carlsson.
+
+ * platform/mac/ThemeMac.mm:
+ (WebCore::ThemeMac::ensuredView): Set the WebCoreFlippedView’s size, because NSSliderCell
+ always shrinks the slider thumb to fit in the control view’s bounds.
+ * rendering/RenderThemeMac.mm:
+ (WebCore::RenderThemeMac::paintSliderThumb): Removed workaround code no longer needed after
+ r97032.
+
2011-10-26 Chris Rogers <crogers@google.com>
Add AudioSourceProviderClient and setFormat() method so we can know audio stream format
2011-10-26 Chris Rogers <crogers@google.com>
Add AudioSourceProviderClient and setFormat() method so we can know audio stream format
// Use a fake flipped view.
static NSView *flippedView = [[WebCoreFlippedView alloc] init];
// Use a fake flipped view.
static NSView *flippedView = [[WebCoreFlippedView alloc] init];
+ [flippedView setFrameSize:scrollView->contentsSize()];
+
paintInfo.context->scale(FloatSize(zoomLevel, zoomLevel));
paintInfo.context->translate(-unzoomedRect.x(), -unzoomedRect.y());
}
paintInfo.context->scale(FloatSize(zoomLevel, zoomLevel));
paintInfo.context->translate(-unzoomedRect.x(), -unzoomedRect.y());
}
-
-#if PLATFORM(MAC)
- // Workaround for <rdar://problem/9421781>.
- if (!o->view()->frameView()->documentView()) {
- paintInfo.context->translate(0, unzoomedRect.y());
- paintInfo.context->scale(FloatSize(1, -1));
- paintInfo.context->translate(0, -(unzoomedRect.y() + unzoomedRect.height()));
- }
-#elif PLATFORM(CHROMIUM)
- paintInfo.context->translate(0, unzoomedRect.y());
- paintInfo.context->scale(FloatSize(1, -1));
- paintInfo.context->translate(0, -(unzoomedRect.y() + unzoomedRect.height()));
-#endif
-
[sliderThumbCell drawInteriorWithFrame:unzoomedRect inView:documentViewFor(o)];
[sliderThumbCell setControlView:nil];
[sliderThumbCell drawInteriorWithFrame:unzoomedRect inView:documentViewFor(o)];
[sliderThumbCell setControlView:nil];