OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 DataRef<StyleGridData> m_grid; | 110 DataRef<StyleGridData> m_grid; |
111 DataRef<StyleGridItemData> m_gridItem; | 111 DataRef<StyleGridItemData> m_gridItem; |
112 | 112 |
113 OwnPtr<ContentData> m_content; | 113 OwnPtr<ContentData> m_content; |
114 OwnPtr<CounterDirectiveMap> m_counterDirectives; | 114 OwnPtr<CounterDirectiveMap> m_counterDirectives; |
115 | 115 |
116 RefPtr<ShadowList> m_boxShadow; | 116 RefPtr<ShadowList> m_boxShadow; |
117 | 117 |
118 RefPtr<StyleReflection> m_boxReflect; | 118 RefPtr<StyleReflection> m_boxReflect; |
119 | 119 |
120 OwnPtrWillBePersistent<CSSAnimationData> m_animations; | 120 OwnPtr<CSSAnimationData> m_animations; |
121 OwnPtrWillBePersistent<CSSTransitionData> m_transitions; | 121 OwnPtr<CSSTransitionData> m_transitions; |
122 | 122 |
123 FillLayer m_mask; | 123 FillLayer m_mask; |
124 NinePieceImage m_maskBoxImage; | 124 NinePieceImage m_maskBoxImage; |
125 | 125 |
126 LengthSize m_pageSize; | 126 LengthSize m_pageSize; |
127 | 127 |
128 RefPtr<ShapeValue> m_shapeOutside; | 128 RefPtr<ShapeValue> m_shapeOutside; |
129 Length m_shapeMargin; | 129 Length m_shapeMargin; |
130 float m_shapeImageThreshold; | 130 float m_shapeImageThreshold; |
131 | 131 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 unsigned m_hasInlineTransform : 1; | 204 unsigned m_hasInlineTransform : 1; |
205 | 205 |
206 private: | 206 private: |
207 StyleRareNonInheritedData(); | 207 StyleRareNonInheritedData(); |
208 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 208 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
209 }; | 209 }; |
210 | 210 |
211 } // namespace blink | 211 } // namespace blink |
212 | 212 |
213 #endif // StyleRareNonInheritedData_h | 213 #endif // StyleRareNonInheritedData_h |
OLD | NEW |