Changeset 143857 in webkit


Ignore:
Timestamp:
Feb 23, 2013, 9:31:10 PM (12 years ago)
Author:
eric.carlson@apple.com
Message:

[Mac] user preference caption style applied incorrectly
https://bugs.webkit.org/show_bug.cgi?id=110707
<rdar://problem/13281096>

Reviewed by Maciej Stachowiak.

  • html/shadow/MediaControlElements.cpp:

(WebCore::MediaControlTextTrackContainerElement::textTrackContainerElementShadowPseudoId): New

static function so the pseudo ID is available.

(WebCore::MediaControlTextTrackContainerElement::shadowPseudoId): Call textTrackContainerElementShadowPseudoId.

  • html/shadow/MediaControlElements.h:
  • page/CaptionUserPreferencesMac.mm:

(WebCore::CaptionUserPreferencesMac::captionsStyleSheetOverride): Style the text track container

element for cue color, edge style, and font name.

Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143856 r143857  
     12013-02-23  Eric Carlson  <eric.carlson@apple.com>
     2
     3        [Mac] user preference caption style applied incorrectly
     4        https://bugs.webkit.org/show_bug.cgi?id=110707
     5        <rdar://problem/13281096>
     6
     7        Reviewed by Maciej Stachowiak.
     8
     9        * html/shadow/MediaControlElements.cpp:
     10        (WebCore::MediaControlTextTrackContainerElement::textTrackContainerElementShadowPseudoId): New
     11            static function so the pseudo ID is available.
     12        (WebCore::MediaControlTextTrackContainerElement::shadowPseudoId): Call textTrackContainerElementShadowPseudoId.
     13        * html/shadow/MediaControlElements.h:
     14
     15        * page/CaptionUserPreferencesMac.mm:
     16        (WebCore::CaptionUserPreferencesMac::captionsStyleSheetOverride): Style the text track container
     17            element for cue color, edge style, and font name.
     18
    1192013-02-22  Kentaro Hara  <haraken@chromium.org>
    220
  • trunk/Source/WebCore/html/shadow/MediaControlElements.cpp

    r143232 r143857  
    12011201}
    12021202
     1203const AtomicString& MediaControlTextTrackContainerElement::textTrackContainerElementShadowPseudoId()
     1204{
     1205    DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-text-track-container", AtomicString::ConstructFromLiteral));
     1206    return id;
     1207}
     1208   
    12031209const AtomicString& MediaControlTextTrackContainerElement::shadowPseudoId() const
    12041210{
    1205     DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-text-track-container", AtomicString::ConstructFromLiteral));
    1206     return id;
     1211    return textTrackContainerElementShadowPseudoId();
    12071212}
    12081213
  • trunk/Source/WebCore/html/shadow/MediaControlElements.h

    r141966 r143857  
    441441    void updateSizes(bool forceUpdate = false);
    442442    void createSubtrees(Document*);
     443    static const AtomicString& textTrackContainerElementShadowPseudoId();
    443444
    444445private:
  • trunk/Source/WebCore/page/CaptionUserPreferencesMac.mm

    r143469 r143857  
    3838#import "LocalizedStrings.h"
    3939#import "Logging.h"
     40#import "MediaControlElements.h"
    4041#import "PageGroup.h"
    4142#import "SoftLinking.h"
     
    377378    String windowColor = captionsWindowCSS();
    378379    String windowCornerRadius = windowRoundedCornerRadiusCSS();
    379     String captionsColor = captionsTextColorCSS();
    380     String edgeStyle = captionsTextEdgeCSS();
    381     String fontName = captionsDefaultFontCSS();
    382     if (!captionsColor.isEmpty() || !windowColor.isEmpty() || !windowCornerRadius.isEmpty() || !edgeStyle.isEmpty() || !fontName.isEmpty()) {
     380    if (!windowColor.isEmpty() || !windowCornerRadius.isEmpty()) {
    383381        captionsOverrideStyleSheet.append(" video::");
    384382        captionsOverrideStyleSheet.append(TextTrackCueBox::textTrackCueBoxShadowPseudoId());
     
    389387        if (!windowCornerRadius.isEmpty())
    390388            captionsOverrideStyleSheet.append(windowCornerRadius);
     389
     390        captionsOverrideStyleSheet.append('}');
     391    }
     392   
     393    String captionsColor = captionsTextColorCSS();
     394    String edgeStyle = captionsTextEdgeCSS();
     395    String fontName = captionsDefaultFontCSS();
     396    if (!captionsColor.isEmpty() || !edgeStyle.isEmpty() || !fontName.isEmpty()) {
     397        captionsOverrideStyleSheet.append(" video::");
     398        captionsOverrideStyleSheet.append(MediaControlTextTrackContainerElement::textTrackContainerElementShadowPseudoId());
     399        captionsOverrideStyleSheet.append('{');
     400
    391401        if (!captionsColor.isEmpty())
    392402            captionsOverrideStyleSheet.append(captionsColor);
     
    398408        captionsOverrideStyleSheet.append('}');
    399409    }
    400 
     410   
    401411    LOG(Media, "CaptionUserPreferencesMac::captionsStyleSheetOverrideSetting sytle to:\n%s", captionsOverrideStyleSheet.toString().utf8().data());
    402412
Note: See TracChangeset for help on using the changeset viewer.