| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2008, 2009 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 EditAction m_editingAction; | 122 EditAction m_editingAction; |
| 123 EPropertyLevel m_propertyLevel; | 123 EPropertyLevel m_propertyLevel; |
| 124 Position m_start; | 124 Position m_start; |
| 125 Position m_end; | 125 Position m_end; |
| 126 bool m_useEndingSelection; | 126 bool m_useEndingSelection; |
| 127 RefPtr<Element> m_styledInlineElement; | 127 RefPtr<Element> m_styledInlineElement; |
| 128 bool m_removeOnly; | 128 bool m_removeOnly; |
| 129 IsInlineElementToRemoveFunction m_isInlineElementToRemoveFunction; | 129 IsInlineElementToRemoveFunction m_isInlineElementToRemoveFunction; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 bool isLegacyAppleStyleSpan(const Node*); | 132 bool isStyleSpan(const Node*); |
| 133 bool isStyleSpanOrSpanWithOnlyStyleAttribute(const Element*); | 133 bool isStyleSpanOrSpanWithOnlyStyleAttribute(const Element*); |
| 134 PassRefPtr<HTMLElement> createStyleSpanElement(Document*); | 134 PassRefPtr<HTMLElement> createStyleSpanElement(Document*); |
| 135 | 135 |
| 136 } // namespace WebCore | 136 } // namespace WebCore |
| 137 | 137 |
| 138 #endif | 138 #endif |
| OLD | NEW |