| 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 15 matching lines...) Expand all Loading... |
| 26 #define StyleRareNonInheritedData_h | 26 #define StyleRareNonInheritedData_h |
| 27 | 27 |
| 28 #include "core/rendering/ClipPathOperation.h" | 28 #include "core/rendering/ClipPathOperation.h" |
| 29 #include "core/rendering/style/BasicShapes.h" | 29 #include "core/rendering/style/BasicShapes.h" |
| 30 #include "core/rendering/style/CounterDirectives.h" | 30 #include "core/rendering/style/CounterDirectives.h" |
| 31 #include "core/rendering/style/CursorData.h" | 31 #include "core/rendering/style/CursorData.h" |
| 32 #include "core/rendering/style/DataRef.h" | 32 #include "core/rendering/style/DataRef.h" |
| 33 #include "core/rendering/style/FillLayer.h" | 33 #include "core/rendering/style/FillLayer.h" |
| 34 #include "core/rendering/style/LineClampValue.h" | 34 #include "core/rendering/style/LineClampValue.h" |
| 35 #include "core/rendering/style/NinePieceImage.h" | 35 #include "core/rendering/style/NinePieceImage.h" |
| 36 #include "core/rendering/style/RenderStyleConstants.h" |
| 36 #include "core/rendering/style/ShapeValue.h" | 37 #include "core/rendering/style/ShapeValue.h" |
| 37 #include "platform/LengthPoint.h" | 38 #include "platform/LengthPoint.h" |
| 38 #include "wtf/OwnPtr.h" | 39 #include "wtf/OwnPtr.h" |
| 39 #include "wtf/PassRefPtr.h" | 40 #include "wtf/PassRefPtr.h" |
| 40 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 41 | 42 |
| 42 namespace WebCore { | 43 namespace WebCore { |
| 43 | 44 |
| 44 class ContentData; | 45 class ContentData; |
| 45 class CSSAnimationDataList; | 46 class CSSAnimationDataList; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 unsigned m_textDecorationStyle : 3; // TextDecorationStyle | 178 unsigned m_textDecorationStyle : 3; // TextDecorationStyle |
| 178 unsigned m_wrapFlow: 3; // WrapFlow | 179 unsigned m_wrapFlow: 3; // WrapFlow |
| 179 unsigned m_wrapThrough: 1; // WrapThrough | 180 unsigned m_wrapThrough: 1; // WrapThrough |
| 180 | 181 |
| 181 unsigned m_runningAcceleratedAnimation : 1; | 182 unsigned m_runningAcceleratedAnimation : 1; |
| 182 | 183 |
| 183 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. | 184 unsigned m_hasAspectRatio : 1; // Whether or not an aspect ratio has been sp
ecified. |
| 184 | 185 |
| 185 unsigned m_effectiveBlendMode: 5; // EBlendMode | 186 unsigned m_effectiveBlendMode: 5; // EBlendMode |
| 186 | 187 |
| 187 unsigned m_touchAction : 1; // TouchAction | 188 unsigned m_touchAction : TouchActionBits; // TouchAction |
| 188 | 189 |
| 189 unsigned m_objectFit : 3; // ObjectFit | 190 unsigned m_objectFit : 3; // ObjectFit |
| 190 | 191 |
| 191 unsigned m_isolation : 1; // Isolation | 192 unsigned m_isolation : 1; // Isolation |
| 192 | 193 |
| 193 private: | 194 private: |
| 194 StyleRareNonInheritedData(); | 195 StyleRareNonInheritedData(); |
| 195 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 196 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 196 }; | 197 }; |
| 197 | 198 |
| 198 } // namespace WebCore | 199 } // namespace WebCore |
| 199 | 200 |
| 200 #endif // StyleRareNonInheritedData_h | 201 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |