| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 if (AXObjectCache* cache = node->document()->existingAXObjectCache()) | 54 if (AXObjectCache* cache = node->document()->existingAXObjectCache()) |
| 55 cache->nodeTextChangeNotification(node, textChange, 0, nodeValue); | 55 cache->nodeTextChangeNotification(node, textChange, 0, nodeValue); |
| 56 } | 56 } |
| 57 | 57 |
| 58 void AppendNodeCommand::doApply() | 58 void AppendNodeCommand::doApply() |
| 59 { | 59 { |
| 60 if (!m_parent->rendererIsEditable() && m_parent->attached()) | 60 if (!m_parent->rendererIsEditable() && m_parent->attached()) |
| 61 return; | 61 return; |
| 62 | 62 |
| 63 m_parent->appendChild(m_node.get(), IGNORE_EXCEPTION_STATE, AttachLazily); | 63 m_parent->appendChild(m_node.get(), IGNORE_EXCEPTION, AttachLazily); |
| 64 | 64 |
| 65 if (AXObjectCache::accessibilityEnabled()) | 65 if (AXObjectCache::accessibilityEnabled()) |
| 66 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextI
nserted); | 66 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextI
nserted); |
| 67 } | 67 } |
| 68 | 68 |
| 69 void AppendNodeCommand::doUnapply() | 69 void AppendNodeCommand::doUnapply() |
| 70 { | 70 { |
| 71 if (!m_parent->rendererIsEditable()) | 71 if (!m_parent->rendererIsEditable()) |
| 72 return; | 72 return; |
| 73 | 73 |
| 74 // Need to notify this before actually deleting the text | 74 // Need to notify this before actually deleting the text |
| 75 if (AXObjectCache::accessibilityEnabled()) | 75 if (AXObjectCache::accessibilityEnabled()) |
| 76 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextD
eleted); | 76 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextD
eleted); |
| 77 | 77 |
| 78 m_node->remove(IGNORE_EXCEPTION_STATE); | 78 m_node->remove(IGNORE_EXCEPTION); |
| 79 } | 79 } |
| 80 | 80 |
| 81 #ifndef NDEBUG | 81 #ifndef NDEBUG |
| 82 void AppendNodeCommand::getNodesInCommand(HashSet<Node*>& nodes) | 82 void AppendNodeCommand::getNodesInCommand(HashSet<Node*>& nodes) |
| 83 { | 83 { |
| 84 addNodeAndDescendants(m_parent.get(), nodes); | 84 addNodeAndDescendants(m_parent.get(), nodes); |
| 85 addNodeAndDescendants(m_node.get(), nodes); | 85 addNodeAndDescendants(m_node.get(), nodes); |
| 86 } | 86 } |
| 87 #endif | 87 #endif |
| 88 | 88 |
| 89 } // namespace WebCore | 89 } // namespace WebCore |
| OLD | NEW |