OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "core/style/AppliedTextDecoration.h" | 28 #include "core/style/AppliedTextDecoration.h" |
29 #include "core/style/BorderEdge.h" | 29 #include "core/style/BorderEdge.h" |
30 #include "core/style/ContentData.h" | 30 #include "core/style/ContentData.h" |
31 #include "core/style/DataEquivalency.h" | 31 #include "core/style/DataEquivalency.h" |
32 #include "core/style/ComputedStyleConstants.h" | 32 #include "core/style/ComputedStyleConstants.h" |
33 #include "core/style/PathStyleMotionPath.h" | 33 #include "core/style/PathStyleMotionPath.h" |
34 #include "core/style/QuotesData.h" | 34 #include "core/style/QuotesData.h" |
35 #include "core/style/ShadowList.h" | 35 #include "core/style/ShadowList.h" |
36 #include "core/style/StyleImage.h" | 36 #include "core/style/StyleImage.h" |
37 #include "core/style/StyleInheritedData.h" | 37 #include "core/style/StyleInheritedData.h" |
| 38 #include "core/style/StyleVariableData.h" |
38 #include "platform/LengthFunctions.h" | 39 #include "platform/LengthFunctions.h" |
39 #include "platform/RuntimeEnabledFeatures.h" | 40 #include "platform/RuntimeEnabledFeatures.h" |
40 #include "platform/fonts/Font.h" | 41 #include "platform/fonts/Font.h" |
41 #include "platform/fonts/FontSelector.h" | 42 #include "platform/fonts/FontSelector.h" |
42 #include "platform/geometry/FloatRoundedRect.h" | 43 #include "platform/geometry/FloatRoundedRect.h" |
43 #include "platform/graphics/GraphicsContext.h" | 44 #include "platform/graphics/GraphicsContext.h" |
44 #include "platform/transforms/RotateTransformOperation.h" | 45 #include "platform/transforms/RotateTransformOperation.h" |
45 #include "platform/transforms/ScaleTransformOperation.h" | 46 #include "platform/transforms/ScaleTransformOperation.h" |
46 #include "platform/transforms/TranslateTransformOperation.h" | 47 #include "platform/transforms/TranslateTransformOperation.h" |
47 #include "wtf/MathExtras.h" | 48 #include "wtf/MathExtras.h" |
(...skipping 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1829 } | 1830 } |
1830 | 1831 |
1831 void ComputedStyle::copyChildDependentFlagsFrom(const ComputedStyle& other) | 1832 void ComputedStyle::copyChildDependentFlagsFrom(const ComputedStyle& other) |
1832 { | 1833 { |
1833 setEmptyState(other.emptyState()); | 1834 setEmptyState(other.emptyState()); |
1834 if (other.hasExplicitlyInheritedProperties()) | 1835 if (other.hasExplicitlyInheritedProperties()) |
1835 setHasExplicitlyInheritedProperties(); | 1836 setHasExplicitlyInheritedProperties(); |
1836 } | 1837 } |
1837 | 1838 |
1838 } // namespace blink | 1839 } // namespace blink |
OLD | NEW |