| Index: Source/core/layout/LayoutObject.cpp
|
| diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
|
| index 9b76a8877e6b7d9990a3cbe82991cdb83e062057..24580c4854149516eab2178a7a9e4edc0d6e3205 100644
|
| --- a/Source/core/layout/LayoutObject.cpp
|
| +++ b/Source/core/layout/LayoutObject.cpp
|
| @@ -1090,7 +1090,8 @@ String LayoutObject::decoratedName() const
|
|
|
| if (isAnonymous())
|
| name.append(" (anonymous)");
|
| - if (isOutOfFlowPositioned())
|
| + // FIXME: Remove the special case for LayoutView here (requires rebaseline of all tests).
|
| + if (isOutOfFlowPositioned() && !isLayoutView())
|
| name.append(" (positioned)");
|
| if (isRelPositioned())
|
| name.append(" (relative positioned)");
|
|
|