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

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

Issue 2089593002: Add expansion of shorthands with custom properties to longhands using a pending substition value. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renames, signature update and master merge Created 4 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
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 05d37db4f740422e1eb9980a24da78c75394057b..25b465ef45817ea767be2e0b40a0a33d4b629dae 100644
--- a/third_party/WebKit/Source/core/css/CSSValue.h
+++ b/third_party/WebKit/Source/core/css/CSSValue.h
@@ -98,6 +98,7 @@ public:
bool isCustomPropertyDeclaration() const { return m_classType == CustomPropertyDeclarationClass; }
bool isVariableReferenceValue() const { return m_classType == VariableReferenceClass; }
bool isGridAutoRepeatValue() const { return m_classType == GridAutoRepeatClass; }
+ bool isPendingSubstitutionValue() const { return m_classType == PendingSubstitutionValueClass; }
bool hasFailedOrCanceledSubresources() const;
@@ -163,6 +164,7 @@ protected:
PathClass,
VariableReferenceClass,
CustomPropertyDeclarationClass,
+ PendingSubstitutionValueClass,
// SVG classes.
CSSSVGDocumentClass,
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPendingSubstitutionValue.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