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

Unified Diff: third_party/WebKit/Source/core/animation/ColorPropertyFunctions.cpp

Issue 1710003002: Unprefix multicol properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase master Created 4 years, 10 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: third_party/WebKit/Source/core/animation/ColorPropertyFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/ColorPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/ColorPropertyFunctions.cpp
index 40cc56d18216aa6fe35a7e70c5b702e539951049..8fbd12a8146105d28ade4a8745763c7097bb1061 100644
--- a/third_party/WebKit/Source/core/animation/ColorPropertyFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/ColorPropertyFunctions.cpp
@@ -30,7 +30,7 @@ StyleColor ColorPropertyFunctions::getUnvisitedColor(CSSPropertyID property, con
return style.color();
case CSSPropertyOutlineColor:
return style.outlineColor();
- case CSSPropertyWebkitColumnRuleColor:
+ case CSSPropertyColumnRuleColor:
return style.columnRuleColor();
case CSSPropertyWebkitTextEmphasisColor:
return style.textEmphasisColor();
@@ -71,7 +71,7 @@ StyleColor ColorPropertyFunctions::getVisitedColor(CSSPropertyID property, const
return style.visitedLinkColor();
case CSSPropertyOutlineColor:
return style.visitedLinkOutlineColor();
- case CSSPropertyWebkitColumnRuleColor:
+ case CSSPropertyColumnRuleColor:
return style.visitedLinkColumnRuleColor();
case CSSPropertyWebkitTextEmphasisColor:
return style.visitedLinkTextEmphasisColor();
@@ -131,7 +131,7 @@ void ColorPropertyFunctions::setUnvisitedColor(CSSPropertyID property, ComputedS
case CSSPropertyTextDecorationColor:
style.setTextDecorationColor(color);
return;
- case CSSPropertyWebkitColumnRuleColor:
+ case CSSPropertyColumnRuleColor:
style.setColumnRuleColor(color);
return;
case CSSPropertyWebkitTextStrokeColor:
@@ -179,7 +179,7 @@ void ColorPropertyFunctions::setVisitedColor(CSSPropertyID property, ComputedSty
case CSSPropertyTextDecorationColor:
style.setVisitedLinkTextDecorationColor(color);
return;
- case CSSPropertyWebkitColumnRuleColor:
+ case CSSPropertyColumnRuleColor:
style.setVisitedLinkColumnRuleColor(color);
return;
case CSSPropertyWebkitTextStrokeColor:

Powered by Google App Engine
This is Rietveld 408576698