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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 LayoutSize m_minimumSizeForResizing; | 135 LayoutSize m_minimumSizeForResizing; |
136 IntSize m_savedLayerScrollOffset; | 136 IntSize m_savedLayerScrollOffset; |
137 | 137 |
138 OwnPtr<DatasetDOMStringMap> m_dataset; | 138 OwnPtr<DatasetDOMStringMap> m_dataset; |
139 OwnPtr<ClassList> m_classList; | 139 OwnPtr<ClassList> m_classList; |
140 OwnPtr<ElementShadow> m_shadow; | 140 OwnPtr<ElementShadow> m_shadow; |
141 OwnPtr<NamedNodeMap> m_attributeMap; | 141 OwnPtr<NamedNodeMap> m_attributeMap; |
142 OwnPtr<InputMethodContext> m_inputMethodContext; | 142 OwnPtr<InputMethodContext> m_inputMethodContext; |
143 OwnPtr<ActiveAnimations> m_activeAnimations; | 143 OwnPtr<ActiveAnimations> m_activeAnimations; |
144 OwnPtrWillBePersistent<InlineCSSStyleDeclaration> m_cssomWrapper; | 144 OwnPtr<InlineCSSStyleDeclaration> m_cssomWrapper; |
145 | 145 |
146 RefPtr<RenderStyle> m_computedStyle; | 146 RefPtr<RenderStyle> m_computedStyle; |
147 RefPtr<CustomElementDefinition> m_customElementDefinition; | 147 RefPtr<CustomElementDefinition> m_customElementDefinition; |
148 | 148 |
149 RefPtr<PseudoElement> m_generatedBefore; | 149 RefPtr<PseudoElement> m_generatedBefore; |
150 RefPtr<PseudoElement> m_generatedAfter; | 150 RefPtr<PseudoElement> m_generatedAfter; |
151 RefPtr<PseudoElement> m_backdrop; | 151 RefPtr<PseudoElement> m_backdrop; |
152 | 152 |
153 explicit ElementRareData(RenderObject*); | 153 explicit ElementRareData(RenderObject*); |
154 }; | 154 }; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 clearFlag(ChildrenAffectedByLastChildRules); | 240 clearFlag(ChildrenAffectedByLastChildRules); |
241 clearFlag(ChildrenAffectedByDirectAdjacentRules); | 241 clearFlag(ChildrenAffectedByDirectAdjacentRules); |
242 clearFlag(ChildrenAffectedByIndirectAdjacentRules); | 242 clearFlag(ChildrenAffectedByIndirectAdjacentRules); |
243 clearFlag(ChildrenAffectedByForwardPositionalRules); | 243 clearFlag(ChildrenAffectedByForwardPositionalRules); |
244 clearFlag(ChildrenAffectedByBackwardPositionalRules); | 244 clearFlag(ChildrenAffectedByBackwardPositionalRules); |
245 } | 245 } |
246 | 246 |
247 } // namespace | 247 } // namespace |
248 | 248 |
249 #endif // ElementRareData_h | 249 #endif // ElementRareData_h |
OLD | NEW |