| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 2004, 2005, 2007 Rob Buis <buis@kde.org> |
| 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 | 5 |
| 6 Based on khtml code by: | 6 Based on khtml code by: |
| 7 Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 7 Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 8 Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) | 8 Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 9 Copyright (C) 2002-2003 Dirk Mueller (mueller@kde.org) | 9 Copyright (C) 2002-2003 Dirk Mueller (mueller@kde.org) |
| 10 Copyright (C) 2002 Apple Computer, Inc. | 10 Copyright (C) 2002 Apple Computer, Inc. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 along with this library; see the file COPYING.LIB. If not, write to | 23 along with this library; see the file COPYING.LIB. If not, write to |
| 24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 25 Boston, MA 02110-1301, USA. | 25 Boston, MA 02110-1301, USA. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 | 29 |
| 30 #if ENABLE(SVG) | 30 #if ENABLE(SVG) |
| 31 #include "core/rendering/style/SVGRenderStyleDefs.h" | 31 #include "core/rendering/style/SVGRenderStyleDefs.h" |
| 32 | 32 |
| 33 #include "core/rendering/style/RenderStyle.h" | |
| 34 #include "core/rendering/style/SVGRenderStyle.h" | 33 #include "core/rendering/style/SVGRenderStyle.h" |
| 35 | 34 |
| 36 namespace WebCore { | 35 namespace WebCore { |
| 37 | 36 |
| 38 StyleFillData::StyleFillData() | 37 StyleFillData::StyleFillData() |
| 39 : opacity(SVGRenderStyle::initialFillOpacity()) | 38 : opacity(SVGRenderStyle::initialFillOpacity()) |
| 40 , paintType(SVGRenderStyle::initialFillPaintType()) | 39 , paintType(SVGRenderStyle::initialFillPaintType()) |
| 41 , paintColor(SVGRenderStyle::initialFillPaintColor()) | 40 , paintColor(SVGRenderStyle::initialFillPaintColor()) |
| 42 , paintUri(SVGRenderStyle::initialFillPaintUri()) | 41 , paintUri(SVGRenderStyle::initialFillPaintUri()) |
| 43 , visitedLinkPaintType(SVGRenderStyle::initialStrokePaintType()) | 42 , visitedLinkPaintType(SVGRenderStyle::initialStrokePaintType()) |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot
her) const | 233 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot
her) const |
| 235 { | 234 { |
| 236 return markerStart == other.markerStart | 235 return markerStart == other.markerStart |
| 237 && markerMid == other.markerMid | 236 && markerMid == other.markerMid |
| 238 && markerEnd == other.markerEnd; | 237 && markerEnd == other.markerEnd; |
| 239 } | 238 } |
| 240 | 239 |
| 241 } | 240 } |
| 242 | 241 |
| 243 #endif // ENABLE(SVG) | 242 #endif // ENABLE(SVG) |
| OLD | NEW |