| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "core/dom/Element.h" | 28 #include "core/dom/Element.h" |
| 29 #include "core/dom/Text.h" | 29 #include "core/dom/Text.h" |
| 30 #include "core/layout/LayoutObject.h" | 30 #include "core/layout/LayoutObject.h" |
| 31 #include "wtf/Assertions.h" | 31 #include "wtf/Assertions.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 SplitTextNodeContainingElementCommand::SplitTextNodeContainingElementCommand(Tex
t* text, int offset) | 35 SplitTextNodeContainingElementCommand::SplitTextNodeContainingElementCommand(Tex
t* text, int offset) |
| 36 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset) | 36 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset) |
| 37 { | 37 { |
| 38 ASSERT(m_text); | 38 DCHECK(m_text); |
| 39 ASSERT(m_text->length() > 0); | 39 DCHECK_GT(m_text->length(), 0u); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void SplitTextNodeContainingElementCommand::doApply(EditingState*) | 42 void SplitTextNodeContainingElementCommand::doApply(EditingState*) |
| 43 { | 43 { |
| 44 ASSERT(m_text); | 44 DCHECK(m_text); |
| 45 ASSERT(m_offset > 0); | 45 DCHECK_GT(m_offset, 0); |
| 46 | 46 |
| 47 splitTextNode(m_text.get(), m_offset); | 47 splitTextNode(m_text.get(), m_offset); |
| 48 | 48 |
| 49 Element* parent = m_text->parentElement(); | 49 Element* parent = m_text->parentElement(); |
| 50 if (!parent || !parent->parentElement() || !parent->parentElement()->hasEdit
ableStyle()) | 50 if (!parent || !parent->parentElement() || !parent->parentElement()->hasEdit
ableStyle()) |
| 51 return; | 51 return; |
| 52 | 52 |
| 53 LayoutObject* parentLayoutObject = parent->layoutObject(); | 53 LayoutObject* parentLayoutObject = parent->layoutObject(); |
| 54 if (!parentLayoutObject || !parentLayoutObject->isInline()) { | 54 if (!parentLayoutObject || !parentLayoutObject->isInline()) { |
| 55 wrapContentsInDummySpan(parent); | 55 wrapContentsInDummySpan(parent); |
| 56 Node* firstChild = parent->firstChild(); | 56 Node* firstChild = parent->firstChild(); |
| 57 if (!firstChild || !firstChild->isElementNode()) | 57 if (!firstChild || !firstChild->isElementNode()) |
| 58 return; | 58 return; |
| 59 parent = toElement(firstChild); | 59 parent = toElement(firstChild); |
| 60 } | 60 } |
| 61 | 61 |
| 62 splitElement(parent, m_text.get()); | 62 splitElement(parent, m_text.get()); |
| 63 } | 63 } |
| 64 | 64 |
| 65 DEFINE_TRACE(SplitTextNodeContainingElementCommand) | 65 DEFINE_TRACE(SplitTextNodeContainingElementCommand) |
| 66 { | 66 { |
| 67 visitor->trace(m_text); | 67 visitor->trace(m_text); |
| 68 CompositeEditCommand::trace(visitor); | 68 CompositeEditCommand::trace(visitor); |
| 69 } | 69 } |
| 70 | 70 |
| 71 } // namespace blink | 71 } // namespace blink |
| OLD | NEW |