summaryrefslogtreecommitdiffstats
path: root/WebCore/editing/SplitTextNodeCommand.cpp
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-05 14:34:32 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-05 14:34:32 -0800
commit635860845790a19bf50bbc51ba8fb66a96dde068 (patch)
treeef6ad9ff73a5b57f65249d4232a202fa77e6a140 /WebCore/editing/SplitTextNodeCommand.cpp
parent8e35f3cfc7fba1d1c829dc557ebad6409cbe16a2 (diff)
downloadexternal_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.zip
external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.tar.gz
external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.tar.bz2
auto import from //depot/cupcake/@136594
Diffstat (limited to 'WebCore/editing/SplitTextNodeCommand.cpp')
-rw-r--r--WebCore/editing/SplitTextNodeCommand.cpp70
1 files changed, 36 insertions, 34 deletions
diff --git a/WebCore/editing/SplitTextNodeCommand.cpp b/WebCore/editing/SplitTextNodeCommand.cpp
index be6cd1d..07a54e3 100644
--- a/WebCore/editing/SplitTextNodeCommand.cpp
+++ b/WebCore/editing/SplitTextNodeCommand.cpp
@@ -33,58 +33,60 @@
namespace WebCore {
SplitTextNodeCommand::SplitTextNodeCommand(PassRefPtr<Text> text, int offset)
- : SimpleEditCommand(text->document()), m_text2(text), m_offset(offset)
+ : SimpleEditCommand(text->document())
+ , m_text2(text)
+ , m_offset(offset)
{
+ // NOTE: Various callers rely on the fact that the original node becomes
+ // the second node (i.e. the new node is inserted before the existing one).
+ // That is not a fundamental dependency (i.e. it could be re-coded), but
+ // rather is based on how this code happens to work.
ASSERT(m_text2);
ASSERT(m_text2->length() > 0);
+ ASSERT(m_offset > 0);
+ ASSERT(m_offset < m_text2->length());
}
void SplitTextNodeCommand::doApply()
{
- ASSERT(m_text2);
- ASSERT(m_offset > 0);
-
ExceptionCode ec = 0;
- // NOTE: Various callers rely on the fact that the original node becomes
- // the second node (i.e. the new node is inserted before the existing one).
- // That is not a fundamental dependency (i.e. it could be re-coded), but
- // rather is based on how this code happens to work.
- if (!m_text1) {
- // create only if needed.
- // if reapplying, this object will already exist.
- m_text1 = document()->createTextNode(m_text2->substringData(0, m_offset, ec));
- ASSERT(ec == 0);
- ASSERT(m_text1);
- }
+ String prefixText = m_text2->substringData(0, m_offset, ec);
+ if (prefixText.isEmpty())
+ return;
- document()->copyMarkers(m_text2.get(), 0, m_offset, m_text1.get(), 0);
- m_text2->deleteData(0, m_offset, ec);
- ASSERT(ec == 0);
+ RefPtr<Text> prefixTextNode = new Text(document(), prefixText);
+ ASSERT(prefixTextNode);
+ document()->copyMarkers(m_text2.get(), 0, m_offset, prefixTextNode.get(), 0);
- m_text2->parentNode()->insertBefore(m_text1.get(), m_text2.get(), ec);
- ASSERT(ec == 0);
-
- ASSERT(m_text2->previousSibling()->isTextNode());
- ASSERT(m_text2->previousSibling() == m_text1);
+ Node* parent = m_text2->parentNode();
+ if (!parent)
+ return;
+ parent->insertBefore(prefixTextNode.get(), m_text2.get(), ec);
+ if (ec)
+ return;
+
+ m_text2->deleteData(0, m_offset, ec);
+ m_text1 = prefixTextNode.release();
}
void SplitTextNodeCommand::doUnapply()
{
- ASSERT(m_text1);
- ASSERT(m_text2);
- ASSERT(m_text1->nextSibling() == m_text2);
-
- ExceptionCode ec = 0;
- m_text2->insertData(0, m_text1->data(), ec);
- ASSERT(ec == 0);
+ if (!m_text1)
+ return;
- document()->copyMarkers(m_text1.get(), 0, m_offset, m_text2.get(), 0);
+ ASSERT(m_text1->document() == document());
- m_text2->parentNode()->removeChild(m_text1.get(), ec);
- ASSERT(ec == 0);
+ RefPtr<Text> prefixTextNode = m_text1.release();
+ String prefixText = prefixTextNode->data();
+
+ ExceptionCode ec = 0;
+ m_text2->insertData(0, prefixText, ec);
+ if (ec)
+ return;
- m_offset = m_text1->length();
+ document()->copyMarkers(prefixTextNode.get(), 0, prefixText.length(), m_text2.get(), 0);
+ prefixTextNode->remove(ec);
}
} // namespace WebCore