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

Unified Diff: Source/core/css/RenderStyleCSSValueMapping.cpp

Issue 826893002: [CSS Grid Layout] Remove stack from grid-auto-flow syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased patch Created 5 years, 11 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
« no previous file with comments | « Source/core/css/CSSValueKeywords.in ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/RenderStyleCSSValueMapping.cpp
diff --git a/Source/core/css/RenderStyleCSSValueMapping.cpp b/Source/core/css/RenderStyleCSSValueMapping.cpp
index e482f0b7d3469152c56539de8005252b4402cf17..374a77c68dbdbacbd6edfa3cfd4874a0909ac0d0 100644
--- a/Source/core/css/RenderStyleCSSValueMapping.cpp
+++ b/Source/core/css/RenderStyleCSSValueMapping.cpp
@@ -1573,10 +1573,6 @@ PassRefPtrWillBeRawPtr<CSSValue> RenderStyleCSSValueMapping::get(CSSPropertyID p
case AutoFlowColumnDense:
list->append(cssValuePool().createIdentifierValue(CSSValueColumn));
break;
- case AutoFlowStackRow:
- case AutoFlowStackColumn:
- list->append(cssValuePool().createIdentifierValue(CSSValueStack));
- break;
default:
ASSERT_NOT_REACHED();
}
@@ -1586,12 +1582,6 @@ PassRefPtrWillBeRawPtr<CSSValue> RenderStyleCSSValueMapping::get(CSSPropertyID p
case AutoFlowColumnDense:
list->append(cssValuePool().createIdentifierValue(CSSValueDense));
break;
- case AutoFlowStackRow:
- list->append(cssValuePool().createIdentifierValue(CSSValueRow));
- break;
- case AutoFlowStackColumn:
- list->append(cssValuePool().createIdentifierValue(CSSValueColumn));
- break;
default:
// Do nothing.
break;
« no previous file with comments | « Source/core/css/CSSValueKeywords.in ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698