Summary: | [Qt] Add support for vertical sliders in mobile theme | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Pierre Rossi <pierre.rossi> | ||||
Component: | New Bugs | Assignee: | Pierre Rossi <pierre.rossi> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | dglazkov, webkit.review.bot | ||||
Priority: | P2 | ||||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Attachments: |
|
Description
Pierre Rossi
2012-03-02 12:16:51 PST
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> |