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

Unified Diff: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp

Issue 2657863004: Move scroll paint property nodes to be owned by the transform tree (Closed)
Patch Set: Rebase & remove parens Created 3 years, 11 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
Index: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
diff --git a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
index e3ed0aaa57a80593792b1592788ab35db54d5f52..119fe8f33f843c1fea072ac4b7856a5a49961d34 100644
--- a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
+++ b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
@@ -82,14 +82,6 @@ void PrintTo(const PaintChunkProperties& properties, std::ostream* os) {
printedProperty = true;
}
- if (properties.propertyTreeState.scroll()) {
- if (printedProperty)
- *os << ", ";
- *os << "scroll=";
- PrintTo(*properties.propertyTreeState.scroll(), os);
- printedProperty = true;
- }
-
if (printedProperty)
*os << ", ";
*os << "backfaceHidden=" << properties.backfaceHidden;

Powered by Google App Engine
This is Rietveld 408576698