| Index: Source/core/editing/BreakBlockquoteCommand.cpp
|
| diff --git a/Source/core/editing/BreakBlockquoteCommand.cpp b/Source/core/editing/BreakBlockquoteCommand.cpp
|
| index baf29956fb5013d945da3a843bcdf14b59e73904..73f09d90dd05d22e229d49bd93e39c1edfbcd29f 100644
|
| --- a/Source/core/editing/BreakBlockquoteCommand.cpp
|
| +++ b/Source/core/editing/BreakBlockquoteCommand.cpp
|
| @@ -151,7 +151,7 @@ void BreakBlockquoteCommand::doApply()
|
| while (listChildNode && !listChildNode->hasTagName(liTag))
|
| listChildNode = listChildNode->nextSibling();
|
| if (listChildNode && listChildNode->renderer() && listChildNode->renderer()->isListItem())
|
| - setNodeAttribute(clonedChild, startAttr, String::number(toRenderListItem(listChildNode->renderer())->value()));
|
| + setNodeAttribute(clonedChild, startAttr, AtomicString::number(toRenderListItem(listChildNode->renderer())->value()));
|
| }
|
|
|
| appendNode(clonedChild.get(), clonedAncestor.get());
|
|
|