| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment | 126 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment |
| 127 unsigned m_justifyContent : 3; // EJustifyContent | 127 unsigned m_justifyContent : 3; // EJustifyContent |
| 128 | 128 |
| 129 unsigned userDrag : 2; // EUserDrag | 129 unsigned userDrag : 2; // EUserDrag |
| 130 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." | 130 unsigned textOverflow : 1; // Whether or not lines that spill out should be
truncated with "..." |
| 131 | 131 |
| 132 unsigned m_textDecorationStyle : 3; // TextDecorationStyle | 132 unsigned m_textDecorationStyle : 3; // TextDecorationStyle |
| 133 unsigned m_wrapFlow: 3; // WrapFlow | 133 unsigned m_wrapFlow: 3; // WrapFlow |
| 134 unsigned m_wrapThrough: 1; // WrapThrough | 134 unsigned m_wrapThrough: 1; // WrapThrough |
| 135 | 135 |
| 136 unsigned m_hasCurrentOpacityAnimation : 1; | |
| 137 unsigned m_hasCurrentTransformAnimation : 1; | |
| 138 unsigned m_hasCurrentFilterAnimation : 1; | |
| 139 unsigned m_runningOpacityAnimationOnCompositor : 1; | |
| 140 unsigned m_runningTransformAnimationOnCompositor : 1; | |
| 141 unsigned m_runningFilterAnimationOnCompositor : 1; | |
| 142 | |
| 143 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. | 136 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. |
| 144 | 137 |
| 145 unsigned m_touchAction : TouchActionBits; // TouchAction | 138 unsigned m_touchAction : TouchActionBits; // TouchAction |
| 146 | 139 |
| 147 unsigned m_objectFit : 3; // ObjectFit | 140 unsigned m_objectFit : 3; // ObjectFit |
| 148 | 141 |
| 149 unsigned m_isolation : 1; // Isolation | 142 unsigned m_isolation : 1; // Isolation |
| 150 | 143 |
| 151 unsigned m_justifyItems : 4; // ItemPosition | 144 unsigned m_justifyItems : 4; // ItemPosition |
| 152 unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment | 145 unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment |
| (...skipping 16 matching lines...) Expand all Loading... |
| 169 unsigned m_hasInlineTransform : 1; | 162 unsigned m_hasInlineTransform : 1; |
| 170 | 163 |
| 171 private: | 164 private: |
| 172 StyleRareNonInheritedData(); | 165 StyleRareNonInheritedData(); |
| 173 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 166 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 174 }; | 167 }; |
| 175 | 168 |
| 176 } // namespace blink | 169 } // namespace blink |
| 177 | 170 |
| 178 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ | 171 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ |
| OLD | NEW |