Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 1.12 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. diff --git a/Source/WebCore/css/CSSValue.h b/Source/WebCore/css/CSSValue.h
  2. index ce95369..e059a81 100644
  3. --- a/Source/WebCore/css/CSSValue.h
  4. +++ b/Source/WebCore/css/CSSValue.h
  5. @@ -92,7 +92,7 @@ public:
  6.  
  7.  protected:
  8.  
  9. -    static const size_t ClassTypeBits = 5;
  10. +    static const size_t ClassTypeBits = 6;
  11.      enum ClassType {
  12.          // Primitive class types must appear before PrimitiveClass.
  13.          ImageClass,
  14. @@ -142,6 +142,8 @@ protected:
  15.          WebKitCSSFilterClass,
  16.  #endif
  17.          WebKitCSSTransformClass,
  18. +        ValueListSpaceSeparatedClass,
  19. +        ValueListCommaSeparatedClass
  20.          // Do not append non-list class types here.
  21.      };
  22.  
  23. @@ -152,7 +154,6 @@ protected:
  24.          , m_hasCachedCSSText(false)
  25.          , m_isQuirkValue(false)
  26.          , m_isImplicitInitialValue(false)
  27. -        , m_isSpaceSeparatedValueList(false)
  28.          , m_classType(classType)
  29.      {
  30.      }
  31. @@ -177,9 +178,6 @@ protected:
  32.      // CSSInitialValue bits:
  33.      bool m_isImplicitInitialValue : 1;
  34.  
  35. -    // CSSValueList bits:
  36. -    bool m_isSpaceSeparatedValueList : 1;
  37. -
  38.  private:
  39.      unsigned char m_classType : ClassTypeBits; // ClassType
  40.  };