| Index: Source/core/editing/markup.cpp
|
| diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp
|
| index aa85eabbd0658bb6d020a2a942e2c7f188645606..7259f474a27ea20a1308d1c8ea6b98530f5ead31 100644
|
| --- a/Source/core/editing/markup.cpp
|
| +++ b/Source/core/editing/markup.cpp
|
| @@ -753,13 +753,13 @@ PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkupWithContext(Doc
|
| return fragment;
|
| }
|
|
|
| -String createMarkup(const Node* node, EChildrenOnly childrenOnly, WillBeHeapVector<RawPtrWillBeMember<Node>>* nodes, EAbsoluteURLs shouldResolveURLs, Vector<QualifiedName>* tagNamesToSkip)
|
| +String createMarkup(const Node* node, EChildrenOnly childrenOnly, WillBeHeapVector<RawPtrWillBeMember<Node>>* nodes, EAbsoluteURLs shouldResolveURLs)
|
| {
|
| if (!node)
|
| return "";
|
|
|
| MarkupAccumulator accumulator(nodes, shouldResolveURLs);
|
| - return accumulator.serializeNodes(const_cast<Node&>(*node), childrenOnly, tagNamesToSkip);
|
| + return accumulator.serializeNodes(const_cast<Node&>(*node), childrenOnly);
|
| }
|
|
|
| static void fillContainerFromString(ContainerNode* paragraph, const String& string)
|
|
|