| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 DEFINE_WRAPPERTYPEINFO(); | 35 DEFINE_WRAPPERTYPEINFO(); |
| 36 public: | 36 public: |
| 37 void atomize(); | 37 void atomize(); |
| 38 const String& data() const { return m_data; } | 38 const String& data() const { return m_data; } |
| 39 void setData(const String&); | 39 void setData(const String&); |
| 40 unsigned length() const { return m_data.length(); } | 40 unsigned length() const { return m_data.length(); } |
| 41 String substringData(unsigned offset, unsigned count, ExceptionState&); | 41 String substringData(unsigned offset, unsigned count, ExceptionState&); |
| 42 void appendData(const String&); | 42 void appendData(const String&); |
| 43 void replaceData(unsigned offset, unsigned count, const String&, ExceptionSt
ate&); | 43 void replaceData(unsigned offset, unsigned count, const String&, ExceptionSt
ate&); |
| 44 | 44 |
| 45 enum RecalcStyleBehavior { DoNotRecalcStyle, DeprecatedRecalcStyleImmediatle
lyForEditing }; | 45 void insertData(unsigned offset, const String&, ExceptionState&); |
| 46 void insertData(unsigned offset, const String&, ExceptionState&, RecalcStyle
Behavior = DoNotRecalcStyle); | 46 void deleteData(unsigned offset, unsigned count, ExceptionState&); |
| 47 void deleteData(unsigned offset, unsigned count, ExceptionState&, RecalcStyl
eBehavior = DoNotRecalcStyle); | |
| 48 | 47 |
| 49 bool containsOnlyWhitespace() const; | 48 bool containsOnlyWhitespace() const; |
| 50 | 49 |
| 51 StringImpl* dataImpl() { return m_data.impl(); } | 50 StringImpl* dataImpl() { return m_data.impl(); } |
| 52 | 51 |
| 53 void parserAppendData(const String&); | 52 void parserAppendData(const String&); |
| 54 | 53 |
| 55 protected: | 54 protected: |
| 56 CharacterData(TreeScope& treeScope, const String& text, ConstructionType typ
e) | 55 CharacterData(TreeScope& treeScope, const String& text, ConstructionType typ
e) |
| 57 : Node(&treeScope, type) | 56 : Node(&treeScope, type) |
| (...skipping 13 matching lines...) Expand all Loading... |
| 71 }; | 70 }; |
| 72 void didModifyData(const String& oldValue, UpdateSource); | 71 void didModifyData(const String& oldValue, UpdateSource); |
| 73 | 72 |
| 74 String m_data; | 73 String m_data; |
| 75 | 74 |
| 76 private: | 75 private: |
| 77 String nodeValue() const final; | 76 String nodeValue() const final; |
| 78 void setNodeValue(const String&) final; | 77 void setNodeValue(const String&) final; |
| 79 bool isCharacterDataNode() const final { return true; } | 78 bool isCharacterDataNode() const final { return true; } |
| 80 int maxCharacterOffset() const final; | 79 int maxCharacterOffset() const final; |
| 81 void setDataAndUpdate(const String&, unsigned offsetOfReplacedData, unsigned
oldLength, unsigned newLength, UpdateSource = UpdateFromNonParser, RecalcStyleB
ehavior = DoNotRecalcStyle); | 80 void setDataAndUpdate(const String&, unsigned offsetOfReplacedData, unsigned
oldLength, unsigned newLength, UpdateSource = UpdateFromNonParser); |
| 82 | 81 |
| 83 bool isContainerNode() const = delete; // This will catch anyone doing an un
necessary check. | 82 bool isContainerNode() const = delete; // This will catch anyone doing an un
necessary check. |
| 84 bool isElementNode() const = delete; // This will catch anyone doing an unne
cessary check. | 83 bool isElementNode() const = delete; // This will catch anyone doing an unne
cessary check. |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 DEFINE_NODE_TYPE_CASTS(CharacterData, isCharacterDataNode()); | 86 DEFINE_NODE_TYPE_CASTS(CharacterData, isCharacterDataNode()); |
| 88 | 87 |
| 89 } // namespace blink | 88 } // namespace blink |
| 90 | 89 |
| 91 #endif // CharacterData_h | 90 #endif // CharacterData_h |
| OLD | NEW |