| Index: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| index 4ee2ed2c8b89c4276c0766fa3a64e697e9db39fc..c8685ae87d33b3f90b265ba0130f95e283dd826b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| @@ -185,8 +185,9 @@ void LayoutTreeAsText::writeLayoutObject(TextStream& ts,
|
|
|
| if (!(o.isText() && !o.isBR())) {
|
| if (o.isFileUploadControl())
|
| - ts << " " << quoteAndEscapeNonPrintables(
|
| - toLayoutFileUploadControl(&o)->fileTextValue());
|
| + ts << " "
|
| + << quoteAndEscapeNonPrintables(
|
| + toLayoutFileUploadControl(&o)->fileTextValue());
|
|
|
| if (o.parent()) {
|
| Color color = o.resolveColor(CSSPropertyColor);
|
| @@ -451,8 +452,9 @@ static void writeTextRun(TextStream& ts,
|
| if (run.dirOverride())
|
| ts << " override";
|
| }
|
| - ts << ": " << quoteAndEscapeNonPrintables(
|
| - String(o.text()).substring(run.start(), run.len()));
|
| + ts << ": "
|
| + << quoteAndEscapeNonPrintables(
|
| + String(o.text()).substring(run.start(), run.len()));
|
| if (run.hasHyphen())
|
| ts << " + hyphen string "
|
| << quoteAndEscapeNonPrintables(o.style()->hyphenString());
|
|
|