Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp |
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
index 89a762a575958b1e46e6cc459ae1baed7f3f3a6e..2b68b3597fccb9935f964bf39b36d51ec7e41a0a 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
@@ -1534,7 +1534,7 @@ Color ComputedStyle::colorIncludingFallback(int colorProperty, bool visitedLink) |
case CSSPropertyOutlineColor: |
result = visitedLink ? visitedLinkOutlineColor() : outlineColor(); |
break; |
- case CSSPropertyWebkitColumnRuleColor: |
+ case CSSPropertyColumnRuleColor: |
result = visitedLink ? visitedLinkColumnRuleColor() : columnRuleColor(); |
break; |
case CSSPropertyWebkitTextEmphasisColor: |
@@ -1738,7 +1738,7 @@ bool ComputedStyle::columnRuleEquivalent(const ComputedStyle* otherStyle) const |
{ |
return columnRuleStyle() == otherStyle->columnRuleStyle() |
&& columnRuleWidth() == otherStyle->columnRuleWidth() |
- && visitedDependentColor(CSSPropertyWebkitColumnRuleColor) == otherStyle->visitedDependentColor(CSSPropertyWebkitColumnRuleColor); |
+ && visitedDependentColor(CSSPropertyColumnRuleColor) == otherStyle->visitedDependentColor(CSSPropertyColumnRuleColor); |
} |
TextEmphasisMark ComputedStyle::textEmphasisMark() const |