Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp |
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
| index edca61dc55e4867b12316f582ac82bdd08535666..6320b7500e1c872108659651b468cbcf82646c14 100644 |
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
| @@ -1082,6 +1082,7 @@ String LayoutObject::debugName() const |
| name.append(' '); |
| name.append(node->debugName()); |
| } |
| + name.append(String::format(" %p", this)); |
|
Xianzhu
2016/09/20 23:13:41
The output of debugName() is used in layout test o
chrishtr
2016/09/20 23:43:59
Good point. Removed.
|
| return name.toString(); |
| } |