| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 unsigned m_transformStyle3D : 1; // ETransformStyle3D | 167 unsigned m_transformStyle3D : 1; // ETransformStyle3D |
| 168 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility | 168 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility |
| 169 | 169 |
| 170 unsigned userDrag : 2; // EUserDrag | 170 unsigned userDrag : 2; // EUserDrag |
| 171 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." | 171 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." |
| 172 unsigned marginBeforeCollapse : 2; // EMarginCollapse | 172 unsigned marginBeforeCollapse : 2; // EMarginCollapse |
| 173 unsigned marginAfterCollapse : 2; // EMarginCollapse | 173 unsigned marginAfterCollapse : 2; // EMarginCollapse |
| 174 unsigned m_appearance : 6; // EAppearance | 174 unsigned m_appearance : 6; // EAppearance |
| 175 | 175 |
| 176 unsigned m_textDecorationStyle : 3; // TextDecorationStyle | 176 unsigned m_textDecorationStyle : 3; // TextDecorationStyle |
| 177 unsigned m_wrapFlow: 3; // WrapFlow | |
| 178 unsigned m_wrapThrough: 1; // WrapThrough | |
| 179 | 177 |
| 180 unsigned m_hasCurrentOpacityAnimation : 1; | 178 unsigned m_hasCurrentOpacityAnimation : 1; |
| 181 unsigned m_hasCurrentTransformAnimation : 1; | 179 unsigned m_hasCurrentTransformAnimation : 1; |
| 182 unsigned m_hasCurrentFilterAnimation : 1; | 180 unsigned m_hasCurrentFilterAnimation : 1; |
| 183 unsigned m_hasCurrentBackdropFilterAnimation : 1; | 181 unsigned m_hasCurrentBackdropFilterAnimation : 1; |
| 184 unsigned m_runningOpacityAnimationOnCompositor : 1; | 182 unsigned m_runningOpacityAnimationOnCompositor : 1; |
| 185 unsigned m_runningTransformAnimationOnCompositor : 1; | 183 unsigned m_runningTransformAnimationOnCompositor : 1; |
| 186 unsigned m_runningFilterAnimationOnCompositor : 1; | 184 unsigned m_runningFilterAnimationOnCompositor : 1; |
| 187 unsigned m_runningBackdropFilterAnimationOnCompositor : 1; | 185 unsigned m_runningBackdropFilterAnimationOnCompositor : 1; |
| 188 | 186 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. | 218 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. |
| 221 | 219 |
| 222 private: | 220 private: |
| 223 StyleRareNonInheritedData(); | 221 StyleRareNonInheritedData(); |
| 224 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 222 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 225 }; | 223 }; |
| 226 | 224 |
| 227 } // namespace blink | 225 } // namespace blink |
| 228 | 226 |
| 229 #endif // StyleRareNonInheritedData_h | 227 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |