| Index: Source/core/editing/markup.cpp
|
| diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp
|
| index 608698f458be04a608ec0366420844174105f6aa..442c9011e1aeba56be0969b1a3cb67416cfd927b 100644
|
| --- a/Source/core/editing/markup.cpp
|
| +++ b/Source/core/editing/markup.cpp
|
| @@ -369,7 +369,7 @@ Node* StyledMarkupAccumulator::traverseNodesForSerialization(Node* startNode, No
|
| appendStartTag(*n);
|
|
|
| // If node has no children, close the tag now.
|
| - if (!n->hasChildNodes()) {
|
| + if (!n->hasChildren()) {
|
| if (shouldEmit)
|
| appendEndTag(*n);
|
| lastClosed = n;
|
|
|