Index: Source/core/rendering/style/StyleDifference.h |
diff --git a/Source/core/rendering/style/StyleDifference.h b/Source/core/rendering/style/StyleDifference.h |
index 7af431c315f97cd0e6395e5841a8e6e82fc45dca..1d3e610ea4a1bfda53cf0220001923984fe2baac 100644 |
--- a/Source/core/rendering/style/StyleDifference.h |
+++ b/Source/core/rendering/style/StyleDifference.h |
@@ -18,7 +18,6 @@ public: |
FilterChanged = 1 << 3, |
// The object needs to issue paint invalidations if it contains text or properties dependent on color (e.g., border or outline). |
TextOrColorChanged = 1 << 4, |
- VisualOverflowChanged = 1 << 5 |
}; |
StyleDifference() |
@@ -78,8 +77,6 @@ public: |
bool textOrColorChanged() const { return m_propertySpecificDifferences & TextOrColorChanged; } |
void setTextOrColorChanged() { m_propertySpecificDifferences |= TextOrColorChanged; } |
- bool visualOverflowChanged() const { return m_propertySpecificDifferences & VisualOverflowChanged; } |
- void setVisualOverflowChanged() { m_propertySpecificDifferences |= VisualOverflowChanged; } |
private: |
enum PaintInvalidationType { |
NoPaintInvalidation = 0, |
@@ -95,7 +92,7 @@ private: |
}; |
unsigned m_layoutType : 2; |
- unsigned m_propertySpecificDifferences : 6; |
+ unsigned m_propertySpecificDifferences : 5; |
}; |
} // namespace blink |