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

Unified Diff: third_party/WebKit/Source/core/animation/NumberPropertyFunctions.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/NumberPropertyFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/NumberPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/NumberPropertyFunctions.cpp
index b3a6b4381171488c79b7c732631270cdbaa8716b..b661281114b1be3c7d39a61e94f8c33ed9f425ae 100644
--- a/third_party/WebKit/Source/core/animation/NumberPropertyFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/NumberPropertyFunctions.cpp
@@ -55,7 +55,7 @@ bool NumberPropertyFunctions::getNumber(CSSPropertyID property, const ComputedSt
return false;
result = style.fontSizeAdjust();
return true;
- case CSSPropertyWebkitColumnCount:
+ case CSSPropertyColumnCount:
if (style.hasAutoColumnCount())
return false;
result = style.columnCount();
@@ -110,10 +110,10 @@ double NumberPropertyFunctions::clampNumber(CSSPropertyID property, double value
case CSSPropertyWidows:
return clampTo<short>(round(value), 1);
- case CSSPropertyWebkitColumnCount:
+ case CSSPropertyColumnCount:
return clampTo<unsigned short>(round(value), 1);
- case CSSPropertyWebkitColumnRuleWidth:
+ case CSSPropertyColumnRuleWidth:
return clampTo<unsigned short>(round(value));
case CSSPropertyZIndex:
@@ -162,7 +162,7 @@ bool NumberPropertyFunctions::setNumber(CSSPropertyID property, ComputedStyle& s
case CSSPropertyStrokeOpacity:
style.setStrokeOpacity(value);
return true;
- case CSSPropertyWebkitColumnCount:
+ case CSSPropertyColumnCount:
style.setColumnCount(value);
return true;
case CSSPropertyWidows:

Powered by Google App Engine
This is Rietveld 408576698