| Index: third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp b/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| index 4fabe1f0f43acd411006b7eb965457374f1d5785..3091516f94cef4fd8681d7f0eaf79226eec659e9 100644
|
| --- a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| +++ b/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
|
| @@ -1113,19 +1113,19 @@ void VTTCue::applyUserOverrideCSSProperties() {
|
|
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox,
|
| CSSPropertyBackgroundColor,
|
| - settings->textTrackBackgroundColor());
|
| + settings->getTextTrackBackgroundColor());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontFamily,
|
| - settings->textTrackFontFamily());
|
| + settings->getTextTrackFontFamily());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontStyle,
|
| - settings->textTrackFontStyle());
|
| + settings->getTextTrackFontStyle());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontVariant,
|
| - settings->textTrackFontVariant());
|
| + settings->getTextTrackFontVariant());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyColor,
|
| - settings->textTrackTextColor());
|
| + settings->getTextTrackTextColor());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyTextShadow,
|
| - settings->textTrackTextShadow());
|
| + settings->getTextTrackTextShadow());
|
| setInlineStylePropertyIfNotEmpty(*m_cueBackgroundBox, CSSPropertyFontSize,
|
| - settings->textTrackTextSize());
|
| + settings->getTextTrackTextSize());
|
| }
|
|
|
| ExecutionContext* VTTCue::getExecutionContext() const {
|
|
|