| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 unsigned m_hasCurrentOpacityAnimation : 1; | 141 unsigned m_hasCurrentOpacityAnimation : 1; |
| 142 unsigned m_hasCurrentTransformAnimation : 1; | 142 unsigned m_hasCurrentTransformAnimation : 1; |
| 143 unsigned m_hasCurrentFilterAnimation : 1; | 143 unsigned m_hasCurrentFilterAnimation : 1; |
| 144 unsigned m_runningOpacityAnimationOnCompositor : 1; | 144 unsigned m_runningOpacityAnimationOnCompositor : 1; |
| 145 unsigned m_runningTransformAnimationOnCompositor : 1; | 145 unsigned m_runningTransformAnimationOnCompositor : 1; |
| 146 unsigned m_runningFilterAnimationOnCompositor : 1; | 146 unsigned m_runningFilterAnimationOnCompositor : 1; |
| 147 | 147 |
| 148 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. | 148 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. |
| 149 | 149 |
| 150 unsigned m_effectiveBlendMode: 5; // EBlendMode | |
| 151 | |
| 152 unsigned m_touchAction : TouchActionBits; // TouchAction | 150 unsigned m_touchAction : TouchActionBits; // TouchAction |
| 153 | 151 |
| 154 unsigned m_objectFit : 3; // ObjectFit | 152 unsigned m_objectFit : 3; // ObjectFit |
| 155 | 153 |
| 156 unsigned m_isolation : 1; // Isolation | 154 unsigned m_isolation : 1; // Isolation |
| 157 | 155 |
| 158 unsigned m_justifyItems : 4; // ItemPosition | 156 unsigned m_justifyItems : 4; // ItemPosition |
| 159 unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment | 157 unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment |
| 160 unsigned m_justifyItemsPositionType: 1; // Whether or not alignment uses the
'legacy' keyword. | 158 unsigned m_justifyItemsPositionType: 1; // Whether or not alignment uses the
'legacy' keyword. |
| 161 | 159 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 176 unsigned m_hasInlineTransform : 1; | 174 unsigned m_hasInlineTransform : 1; |
| 177 | 175 |
| 178 private: | 176 private: |
| 179 StyleRareNonInheritedData(); | 177 StyleRareNonInheritedData(); |
| 180 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 178 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 181 }; | 179 }; |
| 182 | 180 |
| 183 } // namespace blink | 181 } // namespace blink |
| 184 | 182 |
| 185 #endif // StyleRareNonInheritedData_h | 183 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |