Changeset 143857 in webkit
- Timestamp:
- Feb 23, 2013, 9:31:10 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r143856 r143857 1 2013-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 1 19 2013-02-22 Kentaro Hara <haraken@chromium.org> 2 20 -
trunk/Source/WebCore/html/shadow/MediaControlElements.cpp
r143232 r143857 1201 1201 } 1202 1202 1203 const AtomicString& MediaControlTextTrackContainerElement::textTrackContainerElementShadowPseudoId() 1204 { 1205 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-text-track-container", AtomicString::ConstructFromLiteral)); 1206 return id; 1207 } 1208 1203 1209 const AtomicString& MediaControlTextTrackContainerElement::shadowPseudoId() const 1204 1210 { 1205 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-text-track-container", AtomicString::ConstructFromLiteral)); 1206 return id; 1211 return textTrackContainerElementShadowPseudoId(); 1207 1212 } 1208 1213 -
trunk/Source/WebCore/html/shadow/MediaControlElements.h
r141966 r143857 441 441 void updateSizes(bool forceUpdate = false); 442 442 void createSubtrees(Document*); 443 static const AtomicString& textTrackContainerElementShadowPseudoId(); 443 444 444 445 private: -
trunk/Source/WebCore/page/CaptionUserPreferencesMac.mm
r143469 r143857 38 38 #import "LocalizedStrings.h" 39 39 #import "Logging.h" 40 #import "MediaControlElements.h" 40 41 #import "PageGroup.h" 41 42 #import "SoftLinking.h" … … 377 378 String windowColor = captionsWindowCSS(); 378 379 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()) { 383 381 captionsOverrideStyleSheet.append(" video::"); 384 382 captionsOverrideStyleSheet.append(TextTrackCueBox::textTrackCueBoxShadowPseudoId()); … … 389 387 if (!windowCornerRadius.isEmpty()) 390 388 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 391 401 if (!captionsColor.isEmpty()) 392 402 captionsOverrideStyleSheet.append(captionsColor); … … 398 408 captionsOverrideStyleSheet.append('}'); 399 409 } 400 410 401 411 LOG(Media, "CaptionUserPreferencesMac::captionsStyleSheetOverrideSetting sytle to:\n%s", captionsOverrideStyleSheet.toString().utf8().data()); 402 412
Note:
See TracChangeset
for help on using the changeset viewer.