| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 RefPtr<ShadowList> m_boxShadow; | 106 RefPtr<ShadowList> m_boxShadow; |
| 107 | 107 |
| 108 OwnPtr<CSSAnimationData> m_animations; | 108 OwnPtr<CSSAnimationData> m_animations; |
| 109 OwnPtr<CSSTransitionData> m_transitions; | 109 OwnPtr<CSSTransitionData> m_transitions; |
| 110 | 110 |
| 111 FillLayer m_mask; | 111 FillLayer m_mask; |
| 112 NinePieceImage m_maskBoxImage; | 112 NinePieceImage m_maskBoxImage; |
| 113 | 113 |
| 114 LengthSize m_pageSize; | 114 LengthSize m_pageSize; |
| 115 | 115 |
| 116 RefPtr<ShapeValue> m_shapeOutside; | |
| 117 Length m_shapeMargin; | |
| 118 float m_shapeImageThreshold; | |
| 119 | |
| 120 RefPtr<ClipPathOperation> m_clipPath; | 116 RefPtr<ClipPathOperation> m_clipPath; |
| 121 | 117 |
| 122 StyleColor m_textDecorationColor; | 118 StyleColor m_textDecorationColor; |
| 123 | 119 |
| 124 int m_order; | 120 int m_order; |
| 125 | 121 |
| 126 LengthPoint m_objectPosition; | 122 LengthPoint m_objectPosition; |
| 127 | 123 |
| 128 unsigned m_pageSizeType : 2; // PageSizeType | 124 unsigned m_pageSizeType : 2; // PageSizeType |
| 129 unsigned m_transformStyle3D : 1; // ETransformStyle3D | 125 unsigned m_transformStyle3D : 1; // ETransformStyle3D |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 unsigned m_hasInlineTransform : 1; | 179 unsigned m_hasInlineTransform : 1; |
| 184 | 180 |
| 185 private: | 181 private: |
| 186 StyleRareNonInheritedData(); | 182 StyleRareNonInheritedData(); |
| 187 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 183 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 188 }; | 184 }; |
| 189 | 185 |
| 190 } // namespace blink | 186 } // namespace blink |
| 191 | 187 |
| 192 #endif // StyleRareNonInheritedData_h | 188 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |