| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment | 159 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment |
| 160 unsigned m_alignSelf : 4; // ItemPosition | 160 unsigned m_alignSelf : 4; // ItemPosition |
| 161 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment | 161 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment |
| 162 unsigned m_justifyContent : 3; // EJustifyContent | 162 unsigned m_justifyContent : 3; // EJustifyContent |
| 163 | 163 |
| 164 unsigned userDrag : 2; // EUserDrag | 164 unsigned userDrag : 2; // EUserDrag |
| 165 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." | 165 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." |
| 166 unsigned marginBeforeCollapse : 2; // EMarginCollapse | 166 unsigned marginBeforeCollapse : 2; // EMarginCollapse |
| 167 unsigned marginAfterCollapse : 2; // EMarginCollapse | 167 unsigned marginAfterCollapse : 2; // EMarginCollapse |
| 168 unsigned m_appearance : 6; // EAppearance | 168 unsigned m_appearance : 6; // EAppearance |
| 169 unsigned m_borderFit : 1; // EBorderFit | |
| 170 unsigned m_textCombine : 1; // CSS3 text-combine properties | 169 unsigned m_textCombine : 1; // CSS3 text-combine properties |
| 171 | 170 |
| 172 unsigned m_textDecorationStyle : 3; // TextDecorationStyle | 171 unsigned m_textDecorationStyle : 3; // TextDecorationStyle |
| 173 unsigned m_wrapFlow: 3; // WrapFlow | 172 unsigned m_wrapFlow: 3; // WrapFlow |
| 174 unsigned m_wrapThrough: 1; // WrapThrough | 173 unsigned m_wrapThrough: 1; // WrapThrough |
| 175 | 174 |
| 176 unsigned m_hasCurrentOpacityAnimation : 1; | 175 unsigned m_hasCurrentOpacityAnimation : 1; |
| 177 unsigned m_hasCurrentTransformAnimation : 1; | 176 unsigned m_hasCurrentTransformAnimation : 1; |
| 178 unsigned m_hasCurrentFilterAnimation : 1; | 177 unsigned m_hasCurrentFilterAnimation : 1; |
| 179 unsigned m_runningOpacityAnimationOnCompositor : 1; | 178 unsigned m_runningOpacityAnimationOnCompositor : 1; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 unsigned m_hasInlineTransform : 1; | 210 unsigned m_hasInlineTransform : 1; |
| 212 | 211 |
| 213 private: | 212 private: |
| 214 StyleRareNonInheritedData(); | 213 StyleRareNonInheritedData(); |
| 215 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 214 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 216 }; | 215 }; |
| 217 | 216 |
| 218 } // namespace blink | 217 } // namespace blink |
| 219 | 218 |
| 220 #endif // StyleRareNonInheritedData_h | 219 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |