| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 unsigned m_hasCurrentOpacityAnimation : 1; | 177 unsigned m_hasCurrentOpacityAnimation : 1; |
| 178 unsigned m_hasCurrentTransformAnimation : 1; | 178 unsigned m_hasCurrentTransformAnimation : 1; |
| 179 unsigned m_hasCurrentFilterAnimation : 1; | 179 unsigned m_hasCurrentFilterAnimation : 1; |
| 180 unsigned m_hasCurrentBackdropFilterAnimation : 1; | 180 unsigned m_hasCurrentBackdropFilterAnimation : 1; |
| 181 unsigned m_runningOpacityAnimationOnCompositor : 1; | 181 unsigned m_runningOpacityAnimationOnCompositor : 1; |
| 182 unsigned m_runningTransformAnimationOnCompositor : 1; | 182 unsigned m_runningTransformAnimationOnCompositor : 1; |
| 183 unsigned m_runningFilterAnimationOnCompositor : 1; | 183 unsigned m_runningFilterAnimationOnCompositor : 1; |
| 184 unsigned m_runningBackdropFilterAnimationOnCompositor : 1; | 184 unsigned m_runningBackdropFilterAnimationOnCompositor : 1; |
| 185 | 185 |
| 186 unsigned m_isStackingContext : 1; |
| 187 |
| 186 unsigned m_effectiveBlendMode: 5; // EBlendMode | 188 unsigned m_effectiveBlendMode: 5; // EBlendMode |
| 187 | 189 |
| 188 unsigned m_touchAction : TouchActionBits; // TouchAction | 190 unsigned m_touchAction : TouchActionBits; // TouchAction |
| 189 | 191 |
| 190 unsigned m_objectFit : 3; // ObjectFit | 192 unsigned m_objectFit : 3; // ObjectFit |
| 191 | 193 |
| 192 unsigned m_isolation : 1; // Isolation | 194 unsigned m_isolation : 1; // Isolation |
| 193 | 195 |
| 194 unsigned m_contain : 4; // Containment | 196 unsigned m_contain : 4; // Containment |
| 195 | 197 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 215 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. | 217 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. |
| 216 | 218 |
| 217 private: | 219 private: |
| 218 StyleRareNonInheritedData(); | 220 StyleRareNonInheritedData(); |
| 219 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 221 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 220 }; | 222 }; |
| 221 | 223 |
| 222 } // namespace blink | 224 } // namespace blink |
| 223 | 225 |
| 224 #endif // StyleRareNonInheritedData_h | 226 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |