| Index: Source/core/css/CSSValue.h
|
| diff --git a/Source/core/css/CSSValue.h b/Source/core/css/CSSValue.h
|
| index f2e3db49dad6f4c1682a57e16f507841aea494af..31b05c0c9d329dcc26eec834fc7aef7521ed394a 100644
|
| --- a/Source/core/css/CSSValue.h
|
| +++ b/Source/core/css/CSSValue.h
|
| @@ -174,7 +174,6 @@ protected:
|
| explicit CSSValue(ClassType classType)
|
| : m_primitiveUnitType(0)
|
| , m_hasCachedCSSText(false)
|
| - , m_isQuirkValue(false)
|
| , m_valueListSeparator(SpaceSeparator)
|
| , m_classType(classType)
|
| {
|
| @@ -193,7 +192,6 @@ protected:
|
| // CSSPrimitiveValue bits:
|
| unsigned m_primitiveUnitType : 7; // CSSPrimitiveValue::UnitType
|
| mutable unsigned m_hasCachedCSSText : 1;
|
| - unsigned m_isQuirkValue : 1;
|
|
|
| unsigned m_valueListSeparator : ValueListSeparatorBits;
|
|
|
|
|