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

Unified Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp

Issue 2345403003: Add background attachment fixed main thread scrolling reason [spv2] (Closed)
Patch Set: Minor cleanup Created 4 years, 3 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/core/paint/PaintPropertyTreePrinter.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
index 95c705b74b96ba744d0637b3af9a8f004222fc9b..7d6756231bdede7d949cbe2810864c4315667c56 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
@@ -220,6 +220,8 @@ public:
stringBuilder.append(node->userScrollableHorizontal() ? "yes" : "no");
stringBuilder.append(" userScrollableVertical=");
stringBuilder.append(node->userScrollableVertical() ? "yes" : "no");
+ stringBuilder.append(" hasBackgroundAttachmentFixedMainThreadScrollingReason=");
+ stringBuilder.append(node->hasBackgroundAttachmentFixedMainThreadScrollingReason() ? "yes" : "no");
}
};

Powered by Google App Engine
This is Rietveld 408576698