Changeset 181123 in webkit


Ignore:
Timestamp:
Mar 5, 2015 5:31:14 PM (9 years ago)
Author:
dino@apple.com
Message:

[iOS Media] Web video on iPad appears black and missing the AirPlay placard when connected to an AirPlay route
https://bugs.webkit.org/show_bug.cgi?id=142373
<rdar://problem/19866072>

Reviewed by Brent Fulgham.

There was no style for the placard, which meant it had
zero height (and thus was invisible).

  • Modules/mediacontrols/mediaControlsiOS.css:

(audio::-webkit-media-controls-wireless-playback-status): Added.
(audio::-webkit-media-controls-wireless-playback-status.hidden):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181122 r181123  
     12015-03-05  Dean Jackson  <dino@apple.com>
     2
     3        [iOS Media] Web video on iPad appears black and missing the AirPlay placard when connected to an AirPlay route
     4        https://bugs.webkit.org/show_bug.cgi?id=142373
     5        <rdar://problem/19866072>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        There was no style for the placard, which meant it had
     10        zero height (and thus was invisible).
     11
     12        * Modules/mediacontrols/mediaControlsiOS.css:
     13        (audio::-webkit-media-controls-wireless-playback-status): Added.
     14        (audio::-webkit-media-controls-wireless-playback-status.hidden):
     15
    1162015-03-05  Roger Fong  <roger_fong@apple.com>
    217
  • trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css

    r181091 r181123  
    565565    font-style: italic;
    566566}
     567
     568/* ==================== AIRPLAY PLACARD ==================== */
     569
     570video::-webkit-media-controls-wireless-playback-status,
     571audio::-webkit-media-controls-wireless-playback-status {
     572    display: block;
     573    width: 100%;
     574    height: 100%;
     575    background-color: black;
     576    background-repeat: no-repeat;
     577    background-position: 50% 50%;
     578    background-size: 100% 50%;
     579}
     580
     581video::-webkit-media-controls-wireless-playback-status.hidden,
     582audio::-webkit-media-controls-wireless-playback-status.hidden {
     583    display: none;
     584}
Note: See TracChangeset for help on using the changeset viewer.