| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 private: | 72 private: |
| 73 RefPtr<Node> m_firstNodeInserted; | 73 RefPtr<Node> m_firstNodeInserted; |
| 74 RefPtr<Node> m_lastNodeInserted; | 74 RefPtr<Node> m_lastNodeInserted; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 Node* insertAsListItems(PassRefPtr<HTMLElement> listElement, Node* insertion
Node, const Position&, InsertedNodes&); | 77 Node* insertAsListItems(PassRefPtr<HTMLElement> listElement, Node* insertion
Node, const Position&, InsertedNodes&); |
| 78 | 78 |
| 79 void updateNodesInserted(Node*); | 79 void updateNodesInserted(Node*); |
| 80 bool shouldRemoveEndBR(Node*, const VisiblePosition&); | 80 bool shouldRemoveEndBR(Node*, const VisiblePosition&); |
| 81 | 81 |
| 82 bool shouldMergeStart(bool, bool, bool); | 82 bool shouldMergeStart(bool, bool); |
| 83 bool shouldMergeEnd(bool selectionEndWasEndOfParagraph); | 83 bool shouldMergeEnd(bool selectionEndWasEndOfParagraph); |
| 84 bool shouldMerge(const VisiblePosition&, const VisiblePosition&); | 84 bool shouldMerge(const VisiblePosition&, const VisiblePosition&); |
| 85 | 85 |
| 86 void mergeEndIfNeeded(); | 86 void mergeEndIfNeeded(); |
| 87 | 87 |
| 88 void removeUnrenderedTextNodesAtEnds(InsertedNodes&); | 88 void removeUnrenderedTextNodesAtEnds(InsertedNodes&); |
| 89 | 89 |
| 90 void removeRedundantStylesAndKeepStyleSpanInline(InsertedNodes&); | 90 void removeRedundantStylesAndKeepStyleSpanInline(InsertedNodes&); |
| 91 void makeInsertedContentRoundTrippableWithHTMLTreeBuilder(InsertedNodes&); | 91 void makeInsertedContentRoundTrippableWithHTMLTreeBuilder(InsertedNodes&); |
| 92 void moveNodeOutOfAncestor(PassRefPtr<Node>, PassRefPtr<Node> ancestor); | 92 void moveNodeOutOfAncestor(PassRefPtr<Node>, PassRefPtr<Node> ancestor); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 113 bool m_preventNesting; | 113 bool m_preventNesting; |
| 114 bool m_movingParagraph; | 114 bool m_movingParagraph; |
| 115 EditAction m_editAction; | 115 EditAction m_editAction; |
| 116 bool m_sanitizeFragment; | 116 bool m_sanitizeFragment; |
| 117 bool m_shouldMergeEnd; | 117 bool m_shouldMergeEnd; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace WebCore | 120 } // namespace WebCore |
| 121 | 121 |
| 122 #endif // ReplaceSelectionCommand_h | 122 #endif // ReplaceSelectionCommand_h |
| OLD | NEW |