
Untitled
By: a guest on
Jun 21st, 2012 | syntax:
None | size: 1.12 KB | hits: 12 | expires: Never
diff --git a/Source/WebCore/css/CSSValue.h b/Source/WebCore/css/CSSValue.h
index ce95369..e059a81 100644
--- a/Source/WebCore/css/CSSValue.h
+++ b/Source/WebCore/css/CSSValue.h
@@ -92,7 +92,7 @@ public:
protected:
- static const size_t ClassTypeBits = 5;
+ static const size_t ClassTypeBits = 6;
enum ClassType {
// Primitive class types must appear before PrimitiveClass.
ImageClass,
@@ -142,6 +142,8 @@ protected:
WebKitCSSFilterClass,
#endif
WebKitCSSTransformClass,
+ ValueListSpaceSeparatedClass,
+ ValueListCommaSeparatedClass
// Do not append non-list class types here.
};
@@ -152,7 +154,6 @@ protected:
, m_hasCachedCSSText(false)
, m_isQuirkValue(false)
, m_isImplicitInitialValue(false)
- , m_isSpaceSeparatedValueList(false)
, m_classType(classType)
{
}
@@ -177,9 +178,6 @@ protected:
// CSSInitialValue bits:
bool m_isImplicitInitialValue : 1;
- // CSSValueList bits:
- bool m_isSpaceSeparatedValueList : 1;
-
private:
unsigned char m_classType : ClassTypeBits; // ClassType
};