| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 unsigned m_alignItems : 4; // ItemPosition | 138 unsigned m_alignItems : 4; // ItemPosition |
| 139 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment | 139 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment |
| 140 unsigned m_alignSelf : 4; // ItemPosition | 140 unsigned m_alignSelf : 4; // ItemPosition |
| 141 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment | 141 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment |
| 142 unsigned m_justifyContent : 3; // EJustifyContent | 142 unsigned m_justifyContent : 3; // EJustifyContent |
| 143 | 143 |
| 144 unsigned userDrag : 2; // EUserDrag | 144 unsigned userDrag : 2; // EUserDrag |
| 145 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." | 145 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." |
| 146 unsigned marginBeforeCollapse : 2; // EMarginCollapse | 146 unsigned marginBeforeCollapse : 2; // EMarginCollapse |
| 147 unsigned marginAfterCollapse : 2; // EMarginCollapse | 147 unsigned marginAfterCollapse : 2; // EMarginCollapse |
| 148 unsigned m_borderFit : 1; // EBorderFit | |
| 149 | 148 |
| 150 unsigned m_textDecorationStyle : 3; // TextDecorationStyle | 149 unsigned m_textDecorationStyle : 3; // TextDecorationStyle |
| 151 unsigned m_wrapFlow: 3; // WrapFlow | 150 unsigned m_wrapFlow: 3; // WrapFlow |
| 152 unsigned m_wrapThrough: 1; // WrapThrough | 151 unsigned m_wrapThrough: 1; // WrapThrough |
| 153 | 152 |
| 154 unsigned m_hasCurrentOpacityAnimation : 1; | 153 unsigned m_hasCurrentOpacityAnimation : 1; |
| 155 unsigned m_hasCurrentTransformAnimation : 1; | 154 unsigned m_hasCurrentTransformAnimation : 1; |
| 156 unsigned m_hasCurrentFilterAnimation : 1; | 155 unsigned m_hasCurrentFilterAnimation : 1; |
| 157 unsigned m_runningOpacityAnimationOnCompositor : 1; | 156 unsigned m_runningOpacityAnimationOnCompositor : 1; |
| 158 unsigned m_runningTransformAnimationOnCompositor : 1; | 157 unsigned m_runningTransformAnimationOnCompositor : 1; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 189 unsigned m_hasInlineTransform : 1; | 188 unsigned m_hasInlineTransform : 1; |
| 190 | 189 |
| 191 private: | 190 private: |
| 192 StyleRareNonInheritedData(); | 191 StyleRareNonInheritedData(); |
| 193 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 192 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 194 }; | 193 }; |
| 195 | 194 |
| 196 } // namespace blink | 195 } // namespace blink |
| 197 | 196 |
| 198 #endif // StyleRareNonInheritedData_h | 197 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |