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

Unified Diff: third_party/WebKit/Source/core/css/StylePropertySerializer.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/css/StylePropertySerializer.cpp
diff --git a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
index d9af51efb45727fe9c71177107e023ab23c74c8c..81fbc53ff8b3e072dcb0518fa3a669c7b6d808a4 100644
--- a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
+++ b/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
@@ -435,10 +435,10 @@ String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) const
return get4Values(borderWidthShorthand());
case CSSPropertyBorderStyle:
return get4Values(borderStyleShorthand());
- case CSSPropertyWebkitColumnRule:
- return getShorthandValue(webkitColumnRuleShorthand());
- case CSSPropertyWebkitColumns:
- return getShorthandValue(webkitColumnsShorthand());
+ case CSSPropertyColumnRule:
+ return getShorthandValue(columnRuleShorthand());
+ case CSSPropertyColumns:
+ return getShorthandValue(columnsShorthand());
case CSSPropertyFlex:
return getShorthandValue(flexShorthand());
case CSSPropertyFlexFlow:

Powered by Google App Engine
This is Rietveld 408576698