⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 120453 in webkit


Ignore:
Timestamp:
Jun 15, 2012, 7:17:29 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] media volume slider in wrong position (master_38 regression)
https://bugs.webkit.org/show_bug.cgi?id=89165

Patch by Max Feil <mfeil@rim.com> on 2012-06-15
Reviewed by Antonio Gomes.

Due to upstream simplification of the volume slider (webkit.org
bug 82150) it now appears in the wrong location below the
media controls. The programmatic controls sizing we do in
RenderThemeBlackBerry.cpp relies on absolute positioning of the
volume slider container, so the best way to fix this is to set
the bottom offset.

No new tests since this is a regression fix. BlackBerry media
controls are manually tested.

  • platform/blackberry/RenderThemeBlackBerry.cpp:

(WebCore::RenderThemeBlackBerry::adjustMediaControlStyle):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r120449 r120453  
     12012-06-15  Max Feil  <mfeil@rim.com>
     2
     3        [BlackBerry] media volume slider in wrong position (master_38 regression)
     4        https://bugs.webkit.org/show_bug.cgi?id=89165
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Due to upstream simplification of the volume slider (webkit.org
     9        bug 82150) it now appears in the wrong location below the
     10        media controls. The programmatic controls sizing we do in
     11        RenderThemeBlackBerry.cpp relies on absolute positioning of the
     12        volume slider container, so the best way to fix this is to set
     13        the bottom offset.
     14
     15        No new tests since this is a regression fix. BlackBerry media
     16        controls are manually tested.
     17
     18        * platform/blackberry/RenderThemeBlackBerry.cpp:
     19        (WebCore::RenderThemeBlackBerry::adjustMediaControlStyle):
     20
    1212012-06-15  'Pavel Feldman'  <pfeldman@chromium.org>
    222
  • trunk/Source/WebCore/platform/blackberry/RenderThemeBlackBerry.cpp

    r119838 r120453  
    777777        style->setWidth(controlsHeight);
    778778        style->setHeight(volumeHeight);
     779        style->setBottom(controlsHeight);
    779780        break;
    780781    default:
Note: See TracChangeset for help on using the changeset viewer.