| Index: third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp b/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| index d2b43e7bd97e9cde627cb20a5bed5199ebdf8ad2..afa30746379a87e0cdd784477cb7154c9773a3fb 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| @@ -38,9 +38,9 @@ SplitElementCommand::SplitElementCommand(RawPtr<Element> element, RawPtr<Node> a
|
| , m_element2(element)
|
| , m_atChild(atChild)
|
| {
|
| - ASSERT(m_element2);
|
| - ASSERT(m_atChild);
|
| - ASSERT(m_atChild->parentNode() == m_element2);
|
| + DCHECK(m_element2);
|
| + DCHECK(m_atChild);
|
| + DCHECK_EQ(m_atChild->parentNode(), m_element2);
|
| }
|
|
|
| void SplitElementCommand::executeApply()
|
|
|