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

Unified Diff: third_party/WebKit/Source/core/style/StyleDifferenceTest.cpp

Issue 2776413002: Reland of Add StyleDifference::needsVisualRectUpdate (Closed)
Patch Set: Fix webkit_unit_tests Created 3 years, 9 months 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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleDifference.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleDifferenceTest.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleDifferenceTest.cpp b/third_party/WebKit/Source/core/style/StyleDifferenceTest.cpp
index 51c09624288f028e6f5e17fb322709e5c8e4f730..0abfb8f09f51b17f5464c55659e3d8bdc588dfa7 100644
--- a/third_party/WebKit/Source/core/style/StyleDifferenceTest.cpp
+++ b/third_party/WebKit/Source/core/style/StyleDifferenceTest.cpp
@@ -16,7 +16,8 @@ TEST(StyleDifferenceTest, StreamOutputDefault) {
EXPECT_EQ(
"StyleDifference{layoutType=NoLayout, "
"paintInvalidationType=NoPaintInvalidation, recomputeOverflow=0, "
- "propertySpecificDifferences=, scrollAnchorDisablingPropertyChanged=0}",
+ "visualRectUpdate=0, propertySpecificDifferences=, "
+ "scrollAnchorDisablingPropertyChanged=0}",
stringStream.str());
}
@@ -26,13 +27,14 @@ TEST(StyleDifferenceTest, StreamOutputAllFieldsMutated) {
diff.setNeedsPaintInvalidationObject();
diff.setNeedsPositionedMovementLayout();
diff.setNeedsRecomputeOverflow();
+ diff.setNeedsVisualRectUpdate();
diff.setTransformChanged();
diff.setScrollAnchorDisablingPropertyChanged();
stringStream << diff;
EXPECT_EQ(
"StyleDifference{layoutType=PositionedMovement, "
"paintInvalidationType=PaintInvalidationObject, recomputeOverflow=1, "
- "propertySpecificDifferences=TransformChanged, "
+ "visualRectUpdate=1, propertySpecificDifferences=TransformChanged, "
"scrollAnchorDisablingPropertyChanged=1}",
stringStream.str());
}
@@ -51,6 +53,7 @@ TEST(StyleDifferenceTest, StreamOutputSetAllProperties) {
EXPECT_EQ(
"StyleDifference{layoutType=NoLayout, "
"paintInvalidationType=NoPaintInvalidation, recomputeOverflow=0, "
+ "visualRectUpdate=0, "
"propertySpecificDifferences=TransformChanged|OpacityChanged|"
"ZIndexChanged|FilterChanged|BackdropFilterChanged|CSSClipChanged|"
"TextDecorationOrColorChanged, scrollAnchorDisablingPropertyChanged=0}",
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleDifference.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698