| 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 16 matching lines...) Expand all Loading... |
| 27 #include "core/editing/SplitElementCommand.h" | 27 #include "core/editing/SplitElementCommand.h" |
| 28 | 28 |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 #include "bindings/v8/ExceptionState.h" | 30 #include "bindings/v8/ExceptionState.h" |
| 31 #include "bindings/v8/ExceptionStatePlaceholder.h" | 31 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 32 #include "core/dom/Element.h" | 32 #include "core/dom/Element.h" |
| 33 #include "wtf/Assertions.h" | 33 #include "wtf/Assertions.h" |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 SplitElementCommand::SplitElementCommand(PassRefPtr<Element> element, PassRefPtr
<Node> atChild) | 37 SplitElementCommand::SplitElementCommand(PassRefPtrWillBeRawPtr<Element> element
, PassRefPtrWillBeRawPtr<Node> atChild) |
| 38 : SimpleEditCommand(element->document()) | 38 : SimpleEditCommand(element->document()) |
| 39 , m_element2(element) | 39 , m_element2(element) |
| 40 , m_atChild(atChild) | 40 , m_atChild(atChild) |
| 41 { | 41 { |
| 42 ASSERT(m_element2); | 42 ASSERT(m_element2); |
| 43 ASSERT(m_atChild); | 43 ASSERT(m_atChild); |
| 44 ASSERT(m_atChild->parentNode() == m_element2); | 44 ASSERT(m_atChild->parentNode() == m_element2); |
| 45 } | 45 } |
| 46 | 46 |
| 47 void SplitElementCommand::executeApply() | 47 void SplitElementCommand::executeApply() |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 } | 101 } |
| 102 | 102 |
| 103 void SplitElementCommand::doReapply() | 103 void SplitElementCommand::doReapply() |
| 104 { | 104 { |
| 105 if (!m_element1) | 105 if (!m_element1) |
| 106 return; | 106 return; |
| 107 | 107 |
| 108 executeApply(); | 108 executeApply(); |
| 109 } | 109 } |
| 110 | 110 |
| 111 void SplitElementCommand::trace(Visitor* visitor) |
| 112 { |
| 113 visitor->trace(m_element1); |
| 114 visitor->trace(m_element2); |
| 115 visitor->trace(m_atChild); |
| 116 SimpleEditCommand::trace(visitor); |
| 117 } |
| 118 |
| 111 } // namespace WebCore | 119 } // namespace WebCore |
| OLD | NEW |