| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "StyleMarqueeData.h" | 51 #include "StyleMarqueeData.h" |
| 52 #include "StyleMultiColData.h" | 52 #include "StyleMultiColData.h" |
| 53 #include "StyleRareInheritedData.h" | 53 #include "StyleRareInheritedData.h" |
| 54 #include "StyleRareNonInheritedData.h" | 54 #include "StyleRareNonInheritedData.h" |
| 55 #include "StyleReflection.h" | 55 #include "StyleReflection.h" |
| 56 #include "StyleSurroundData.h" | 56 #include "StyleSurroundData.h" |
| 57 #include "StyleTransformData.h" | 57 #include "StyleTransformData.h" |
| 58 #include "StyleVisualData.h" | 58 #include "StyleVisualData.h" |
| 59 #include "TextDirection.h" | 59 #include "TextDirection.h" |
| 60 #include "ThemeTypes.h" | 60 #include "ThemeTypes.h" |
| 61 #include "TransformOperations.h" | |
| 62 #include "UnicodeBidi.h" | 61 #include "UnicodeBidi.h" |
| 63 #include "core/platform/graphics/Color.h" | 62 #include "core/platform/graphics/Color.h" |
| 64 #include "core/platform/graphics/ColorSpace.h" | 63 #include "core/platform/graphics/ColorSpace.h" |
| 65 #include "core/platform/graphics/FontBaseline.h" | 64 #include "core/platform/graphics/FontBaseline.h" |
| 66 #include "core/platform/graphics/FontDescription.h" | 65 #include "core/platform/graphics/FontDescription.h" |
| 67 #include "core/platform/graphics/GraphicsTypes.h" | 66 #include "core/platform/graphics/GraphicsTypes.h" |
| 68 #include "core/platform/graphics/LayoutBoxExtent.h" | 67 #include "core/platform/graphics/LayoutBoxExtent.h" |
| 69 #include "core/platform/graphics/RoundedRect.h" | 68 #include "core/platform/graphics/RoundedRect.h" |
| 69 #include "core/platform/graphics/transforms/TransformOperations.h" |
| 70 #include <wtf/Forward.h> | 70 #include <wtf/Forward.h> |
| 71 #include <wtf/OwnPtr.h> | 71 #include <wtf/OwnPtr.h> |
| 72 #include <wtf/RefCounted.h> | 72 #include <wtf/RefCounted.h> |
| 73 #include <wtf/StdLibExtras.h> | 73 #include <wtf/StdLibExtras.h> |
| 74 #include <wtf/Vector.h> | 74 #include <wtf/Vector.h> |
| 75 | 75 |
| 76 #include "StyleFilterData.h" | 76 #include "StyleFilterData.h" |
| 77 | 77 |
| 78 #if ENABLE(SVG) | 78 #if ENABLE(SVG) |
| 79 #include "SVGPaint.h" | 79 #include "SVGPaint.h" |
| (...skipping 1725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1805 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation)) | 1805 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation)) |
| 1806 return false; | 1806 return false; |
| 1807 | 1807 |
| 1808 rareInheritedData.access()->m_textOrientation = textOrientation; | 1808 rareInheritedData.access()->m_textOrientation = textOrientation; |
| 1809 return true; | 1809 return true; |
| 1810 } | 1810 } |
| 1811 | 1811 |
| 1812 } // namespace WebCore | 1812 } // namespace WebCore |
| 1813 | 1813 |
| 1814 #endif // RenderStyle_h | 1814 #endif // RenderStyle_h |
| OLD | NEW |