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

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

Issue 1778743003: Make <custom-ident> not insert quotes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win_chromium_rel_ng Created 4 years, 9 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 | « third_party/WebKit/Source/core/css/CSSMarkup.cpp ('k') | third_party/WebKit/Source/core/css/CSSValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSValue.h b/third_party/WebKit/Source/core/css/CSSValue.h
index a63e60710326409c0419bac1f25e08f6200d72c8..5aa5b5a991c6b4cebbd064b2a1dcb047920163a0 100644
--- a/third_party/WebKit/Source/core/css/CSSValue.h
+++ b/third_party/WebKit/Source/core/css/CSSValue.h
@@ -80,6 +80,7 @@ public:
bool isCrossfadeValue() const { return m_classType == CrossfadeClass; }
bool isPaintValue() const { return m_classType == PaintClass; }
bool isFontFeatureValue() const { return m_classType == FontFeatureClass; }
+ bool isFontFamilyValue() const { return m_classType == FontFamilyClass; }
bool isFontFaceSrcValue() const { return m_classType == FontFaceSrcClass; }
bool isFunctionValue() const { return m_classType == FunctionClass; }
bool isCustomIdentValue() const { return m_classType == CustomIdentClass; }
@@ -162,6 +163,7 @@ protected:
BorderImageSliceClass,
FontFeatureClass,
FontFaceSrcClass,
+ FontFamilyClass,
InheritedClass,
InitialClass,
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSMarkup.cpp ('k') | third_party/WebKit/Source/core/css/CSSValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698