Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Unified Diff: Source/core/css/resolver/StyleResolver.cpp

Issue 19516002: [WebVTT] Support text-decoration-{text,color,style} on CSS ::cue pseudo-element (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/css/resolver/StyleResolver.cpp
diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
index 6f544242c4d57bf8edacbec294f2b9fa4197967a..b88b6ace4547a2380c4a46047ea18f0df77af368 100644
--- a/Source/core/css/resolver/StyleResolver.cpp
+++ b/Source/core/css/resolver/StyleResolver.cpp
@@ -1151,6 +1151,10 @@ static inline bool isValidCueStyleProperty(CSSPropertyID id)
case CSSPropertyTextShadow:
case CSSPropertyBorderStyle:
return true;
+ case CSSPropertyTextDecorationLine:
Julien - ping for review 2013/07/18 01:06:02 I would include the 'text-decoration' shorthand he
+ case CSSPropertyTextDecorationStyle:
+ case CSSPropertyTextDecorationColor:
+ return RuntimeEnabledFeatures::css3TextDecorationsEnabled();
default:
break;
}

Powered by Google App Engine
This is Rietveld 408576698