OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com> | 3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 124 |
125 private: | 125 private: |
126 short m_tabindex; | 126 short m_tabindex; |
127 | 127 |
128 IntSize m_savedLayerScrollOffset; | 128 IntSize m_savedLayerScrollOffset; |
129 | 129 |
130 OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset; | 130 OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset; |
131 OwnPtrWillBeMember<ClassList> m_classList; | 131 OwnPtrWillBeMember<ClassList> m_classList; |
132 OwnPtrWillBeMember<ElementShadow> m_shadow; | 132 OwnPtrWillBeMember<ElementShadow> m_shadow; |
133 OwnPtrWillBeMember<NamedNodeMap> m_attributeMap; | 133 OwnPtrWillBeMember<NamedNodeMap> m_attributeMap; |
134 OwnPtr<InputMethodContext> m_inputMethodContext; | 134 OwnPtrWillBeMember<InputMethodContext> m_inputMethodContext; |
135 OwnPtrWillBeMember<ActiveAnimations> m_activeAnimations; | 135 OwnPtrWillBeMember<ActiveAnimations> m_activeAnimations; |
136 OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper; | 136 OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper; |
137 | 137 |
138 RefPtr<RenderStyle> m_computedStyle; | 138 RefPtr<RenderStyle> m_computedStyle; |
139 RefPtr<CustomElementDefinition> m_customElementDefinition; | 139 RefPtr<CustomElementDefinition> m_customElementDefinition; |
140 | 140 |
141 RefPtrWillBeMember<PseudoElement> m_generatedBefore; | 141 RefPtrWillBeMember<PseudoElement> m_generatedBefore; |
142 RefPtrWillBeMember<PseudoElement> m_generatedAfter; | 142 RefPtrWillBeMember<PseudoElement> m_generatedAfter; |
143 RefPtrWillBeMember<PseudoElement> m_backdrop; | 143 RefPtrWillBeMember<PseudoElement> m_backdrop; |
144 | 144 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 } | 212 } |
213 | 213 |
214 inline void ElementRareData::resetStyleState() | 214 inline void ElementRareData::resetStyleState() |
215 { | 215 { |
216 clearElementFlag(StyleAffectedByEmpty); | 216 clearElementFlag(StyleAffectedByEmpty); |
217 } | 217 } |
218 | 218 |
219 } // namespace | 219 } // namespace |
220 | 220 |
221 #endif // ElementRareData_h | 221 #endif // ElementRareData_h |
OLD | NEW |