Index: Source/core/editing/BreakBlockquoteCommand.cpp |
diff --git a/Source/core/editing/BreakBlockquoteCommand.cpp b/Source/core/editing/BreakBlockquoteCommand.cpp |
index 18f2ec69d63707c862cb577d7180a37434454f41..c77dd2a7974e5d64e78d6200ef3e106ebb008339 100644 |
--- a/Source/core/editing/BreakBlockquoteCommand.cpp |
+++ b/Source/core/editing/BreakBlockquoteCommand.cpp |
@@ -153,7 +153,7 @@ void BreakBlockquoteCommand::doApply() |
while (listChildNode && !isHTMLLIElement(*listChildNode)) |
listChildNode = listChildNode->nextSibling(); |
if (isListItem(listChildNode)) |
- setNodeAttribute(clonedChild, startAttr, AtomicString::number(toLayoutListItem(listChildNode->renderer())->value())); |
+ setNodeAttribute(clonedChild, startAttr, AtomicString::number(toLayoutListItem(listChildNode->layoutObject())->value())); |
} |
appendNode(clonedChild.get(), clonedAncestor.get()); |