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

Unified Diff: Source/core/rendering/style/StyleDifference.h

Issue 747493002: Revert "Adding or changing any of box-shadow, outline, or border-image-outset does not need a layou… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years, 1 month 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: 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
« LayoutTests/TestExpectations ('K') | « Source/core/rendering/style/RenderStyle.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698