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

Unified Diff: Source/core/css/CSSValue.h

Issue 18532004: Implement 'grid-template' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Same change, forgot to update css-properties-as-js-properties.html result Created 7 years, 5 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: Source/core/css/CSSValue.h
diff --git a/Source/core/css/CSSValue.h b/Source/core/css/CSSValue.h
index 9fe4b6090abdf4f8c44c1ea65fb330d520524ade..1d24397a2bf3f9ba98f4235c405f4010fe764939 100644
--- a/Source/core/css/CSSValue.h
+++ b/Source/core/css/CSSValue.h
@@ -93,6 +93,7 @@ public:
bool isCSSMixFunctionValue() const { return m_classType == CSSMixFunctionValueClass; }
bool isCSSShaderValue() const { return m_classType == CSSShaderClass; }
bool isVariableValue() const { return m_classType == VariableClass; }
+ bool isGridTemplateValue() const { return m_classType == GridTemplateClass; }
bool isSVGColor() const { return m_classType == SVGColorClass || m_classType == SVGPaintClass; }
bool isSVGPaint() const { return m_classType == SVGPaintClass; }
bool isCSSSVGDocumentValue() const { return m_classType == CSSSVGDocumentClass; }
@@ -152,6 +153,7 @@ protected:
CalculationClass,
CSSShaderClass,
VariableClass,
+ GridTemplateClass,
// SVG classes.
SVGColorClass,

Powered by Google App Engine
This is Rietveld 408576698