| Index: third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp b/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| index e11ff8c738d55d1e154389ca855f48de19148ab6..8e2c05c48310c9cfb41b69264a2197df220c8bc7 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| @@ -206,9 +206,9 @@ void HTMLFormattingElementList::show()
|
| for (unsigned i = 1; i <= m_entries.size(); ++i) {
|
| const Entry& entry = m_entries[m_entries.size() - i];
|
| if (entry.isMarker())
|
| - fprintf(stderr, "marker\n");
|
| + LOG(INFO) << "marker";
|
| else
|
| - entry.element()->showNode();
|
| + LOG(INFO) << *entry.element();
|
| }
|
| }
|
|
|
|
|