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

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

Issue 16404015: Unprefix -webkit-min-content and -webkit-max-content for grid layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
« Source/core/css/CSSValueKeywords.in ('K') | « Source/core/css/CSSValueKeywords.in ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/resolver/StyleResolver.cpp
diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
index e312bb2ad25a14d6f7e56d1118f0c6429b164c2d..a680a8965fed22ba7f1018e04a7543eb9120f0f2 100644
--- a/Source/core/css/resolver/StyleResolver.cpp
+++ b/Source/core/css/resolver/StyleResolver.cpp
@@ -2231,12 +2231,12 @@ bool StyleResolver::useSVGZoomRules()
static bool createGridTrackBreadth(CSSPrimitiveValue* primitiveValue, const StyleResolverState& state, GridLength& workingLength)
{
- if (primitiveValue->getValueID() == CSSValueWebkitMinContent) {
+ if (primitiveValue->getValueID() == CSSValueMinContent) {
workingLength = Length(MinContent);
return true;
}
- if (primitiveValue->getValueID() == CSSValueWebkitMaxContent) {
+ if (primitiveValue->getValueID() == CSSValueMaxContent) {
workingLength = Length(MaxContent);
return true;
}
« Source/core/css/CSSValueKeywords.in ('K') | « Source/core/css/CSSValueKeywords.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698