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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp

Issue 2465983002: Rename "paint invalidation rect" etc. to "visual rect". (Closed)
Patch Set: - Created 4 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: third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
index 01d00741d16fcdc363881b099e6a17a37ede7703..c5ba080d627aa0e127cdb465ef0e9ed995d7596f 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
@@ -327,9 +327,8 @@ static void writeStyle(TextStream& ts, const LayoutObject& object) {
static TextStream& writePositionAndStyle(TextStream& ts,
const LayoutObject& object) {
- ts << " "
- << enclosingIntRect(
- const_cast<LayoutObject&>(object).absoluteClippedOverflowRect());
+ ts << " " << enclosingIntRect(
+ const_cast<LayoutObject&>(object).absoluteVisualRect());
writeStyle(ts, object);
return ts;
}

Powered by Google App Engine
This is Rietveld 408576698