| 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, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights 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 RenderStyle_h | 26 #define RenderStyle_h |
| 27 | 27 |
| 28 #include "CSSPropertyNames.h" | 28 #include "CSSPropertyNames.h" |
| 29 #include "core/css/CSSLengthFunctions.h" | 29 #include "core/css/CSSLengthFunctions.h" |
| 30 #include "core/css/CSSLineBoxContainValue.h" | 30 #include "core/css/CSSLineBoxContainValue.h" |
| 31 #include "core/css/CSSPrimitiveValue.h" | 31 #include "core/css/CSSPrimitiveValue.h" |
| 32 #include "core/platform/ThemeTypes.h" | 32 #include "core/platform/ThemeTypes.h" |
| 33 #include "core/platform/animation/CSSAnimationDataList.h" | 33 #include "core/platform/animation/CSSAnimationDataList.h" |
| 34 #include "core/platform/graphics/Color.h" | 34 #include "core/platform/graphics/Color.h" |
| 35 #include "core/platform/graphics/FontDescription.h" | 35 #include "core/platform/graphics/FontDescription.h" |
| 36 #include "core/platform/graphics/GraphicsTypes.h" | |
| 37 #include "core/platform/graphics/transforms/TransformOperations.h" | 36 #include "core/platform/graphics/transforms/TransformOperations.h" |
| 38 #include "core/rendering/style/BorderValue.h" | 37 #include "core/rendering/style/BorderValue.h" |
| 39 #include "core/rendering/style/CounterDirectives.h" | 38 #include "core/rendering/style/CounterDirectives.h" |
| 40 #include "core/rendering/style/DataRef.h" | 39 #include "core/rendering/style/DataRef.h" |
| 41 #include "core/rendering/style/LineClampValue.h" | 40 #include "core/rendering/style/LineClampValue.h" |
| 42 #include "core/rendering/style/NinePieceImage.h" | 41 #include "core/rendering/style/NinePieceImage.h" |
| 43 #include "core/rendering/style/OutlineValue.h" | 42 #include "core/rendering/style/OutlineValue.h" |
| 44 #include "core/rendering/style/RenderStyleConstants.h" | 43 #include "core/rendering/style/RenderStyleConstants.h" |
| 45 #include "core/rendering/style/SVGRenderStyle.h" | 44 #include "core/rendering/style/SVGRenderStyle.h" |
| 46 #include "core/rendering/style/ShapeValue.h" | 45 #include "core/rendering/style/ShapeValue.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 59 #include "core/rendering/style/StyleSurroundData.h" | 58 #include "core/rendering/style/StyleSurroundData.h" |
| 60 #include "core/rendering/style/StyleTransformData.h" | 59 #include "core/rendering/style/StyleTransformData.h" |
| 61 #include "core/rendering/style/StyleVisualData.h" | 60 #include "core/rendering/style/StyleVisualData.h" |
| 62 #include "core/svg/SVGPaint.h" | 61 #include "core/svg/SVGPaint.h" |
| 63 #include "platform/Length.h" | 62 #include "platform/Length.h" |
| 64 #include "platform/LengthBox.h" | 63 #include "platform/LengthBox.h" |
| 65 #include "platform/LengthSize.h" | 64 #include "platform/LengthSize.h" |
| 66 #include "platform/fonts/FontBaseline.h" | 65 #include "platform/fonts/FontBaseline.h" |
| 67 #include "platform/geometry/LayoutBoxExtent.h" | 66 #include "platform/geometry/LayoutBoxExtent.h" |
| 68 #include "platform/geometry/RoundedRect.h" | 67 #include "platform/geometry/RoundedRect.h" |
| 68 #include "platform/graphics/GraphicsTypes.h" |
| 69 #include "platform/text/TextDirection.h" | 69 #include "platform/text/TextDirection.h" |
| 70 #include "platform/text/UnicodeBidi.h" | 70 #include "platform/text/UnicodeBidi.h" |
| 71 #include "wtf/Forward.h" | 71 #include "wtf/Forward.h" |
| 72 #include "wtf/OwnPtr.h" | 72 #include "wtf/OwnPtr.h" |
| 73 #include "wtf/RefCounted.h" | 73 #include "wtf/RefCounted.h" |
| 74 #include "wtf/StdLibExtras.h" | 74 #include "wtf/StdLibExtras.h" |
| 75 #include "wtf/Vector.h" | 75 #include "wtf/Vector.h" |
| 76 | 76 |
| 77 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u
) { return t == static_cast<T>(u); } | 77 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u
) { return t == static_cast<T>(u); } |
| 78 | 78 |
| (...skipping 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation)) | 1815 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation)) |
| 1816 return false; | 1816 return false; |
| 1817 | 1817 |
| 1818 rareInheritedData.access()->m_textOrientation = textOrientation; | 1818 rareInheritedData.access()->m_textOrientation = textOrientation; |
| 1819 return true; | 1819 return true; |
| 1820 } | 1820 } |
| 1821 | 1821 |
| 1822 } // namespace WebCore | 1822 } // namespace WebCore |
| 1823 | 1823 |
| 1824 #endif // RenderStyle_h | 1824 #endif // RenderStyle_h |
| OLD | NEW |