[Qt] Add support for vertical sliders in mobile theme
Created attachment 129939 [details] Patch
Comment on attachment 129939 [details] Patch Attachment 129939 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/11800151 New failing tests: editing/selection/select-line-break-with-opposite-directionality.html
Comment on attachment 129939 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=129939&action=review > Source/WebCore/platform/qt/RenderThemeQtMobile.cpp:471 > + const int horizontalBorder = (vertical ? rect.width() / 4 : 0); > + const int verticalBorder = (vertical ? 0 : rect.height() / 4); I personally tend to leave out the extra pair of parentheses here.
Committed r110730: <http://trac.webkit.org/changeset/110730>