Changeset 169019 in webkit


Ignore:
Timestamp:
May 18, 2014 3:03:07 PM (10 years ago)
Author:
mjs@apple.com
Message:

REGRESSION (r156546): Default media controls are laid out incorrectly when media element is styled with direction:rtl
https://bugs.webkit.org/show_bug.cgi?id=132531
<rdar://problem/16806267>

Source/WebCore:

Reviewed by Mark Rowe.

This was already tested by the media/video-rtl.htm reftest, now unskipped.

  • Modules/mediacontrols/mediaControlsApple.css:

(audio::-webkit-media-controls-panel): Add missing direction: ltr

LayoutTests:

Reviewed by Mark Rowe.

  • platform/mac/TestExpectations: Unskip media/video-rtl.html
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r169017 r169019  
     12014-05-18  Maciej Stachowiak  <mjs@apple.com>
     2
     3        REGRESSION (r156546): Default media controls are laid out incorrectly when media element is styled with direction:rtl
     4        https://bugs.webkit.org/show_bug.cgi?id=132531
     5        <rdar://problem/16806267>
     6
     7        Reviewed by Mark Rowe.
     8
     9        * platform/mac/TestExpectations: Unskip media/video-rtl.html
     10
    1112014-05-18  Rik Cabanier  <cabanier@adobe.com>
    212
  • trunk/LayoutTests/platform/mac/TestExpectations

    r168616 r169019  
    11701170webkit.org/b/122021 media/video-display-toggle.html
    11711171webkit.org/b/122021 media/video-empty-source.html
    1172 webkit.org/b/122021 media/video-rtl.html
    11731172webkit.org/b/122021 media/video-volume-slider.html
    11741173webkit.org/b/122021 media/volume-bar-empty-when-muted.html
  • trunk/Source/WebCore/ChangeLog

    r169017 r169019  
     12014-05-18  Maciej Stachowiak  <mjs@apple.com>
     2
     3        REGRESSION (r156546): Default media controls are laid out incorrectly when media element is styled with direction:rtl
     4        https://bugs.webkit.org/show_bug.cgi?id=132531
     5        <rdar://problem/16806267>
     6       
     7        Reviewed by Mark Rowe.
     8
     9        This was already tested by the media/video-rtl.htm reftest, now unskipped.
     10
     11        * Modules/mediacontrols/mediaControlsApple.css:
     12        (audio::-webkit-media-controls-panel): Add missing direction: ltr
     13
    1142014-05-18  Rik Cabanier  <cabanier@adobe.com>
    215
  • trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.css

    r168215 r169019  
    9595    -webkit-user-select: none;
    9696
     97    direction: ltr;
     98
    9799    transition: opacity 0.25s linear;
    98100}
Note: See TracChangeset for help on using the changeset viewer.