| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2005, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * (C) 2005 Rob Buis <buis@kde.org> | 3 * (C) 2005 Rob Buis <buis@kde.org> |
| 4 * (C) 2006 Alexander Kellett <lypanov@kde.org> | 4 * (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #include "config.h" | 29 #include "config.h" |
| 30 | 30 |
| 31 #if ENABLE(SVG) | 31 #if ENABLE(SVG) |
| 32 #include "core/rendering/svg/SVGRenderTreeAsText.h" | 32 #include "core/rendering/svg/SVGRenderTreeAsText.h" |
| 33 | 33 |
| 34 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
| 35 #include "LinearGradientAttributes.h" | 35 #include "LinearGradientAttributes.h" |
| 36 #include "NodeRenderStyle.h" | |
| 37 #include "PatternAttributes.h" | 36 #include "PatternAttributes.h" |
| 38 #include "RadialGradientAttributes.h" | 37 #include "RadialGradientAttributes.h" |
| 39 #include "SVGCircleElement.h" | 38 #include "SVGCircleElement.h" |
| 40 #include "SVGEllipseElement.h" | 39 #include "SVGEllipseElement.h" |
| 41 #include "SVGLineElement.h" | 40 #include "SVGLineElement.h" |
| 42 #include "SVGLinearGradientElement.h" | 41 #include "SVGLinearGradientElement.h" |
| 43 #include "SVGNames.h" | 42 #include "SVGNames.h" |
| 44 #include "SVGPathElement.h" | 43 #include "SVGPathElement.h" |
| 45 #include "SVGPathUtilities.h" | 44 #include "SVGPathUtilities.h" |
| 46 #include "SVGPatternElement.h" | 45 #include "SVGPatternElement.h" |
| 47 #include "SVGPointList.h" | 46 #include "SVGPointList.h" |
| 48 #include "SVGPolyElement.h" | 47 #include "SVGPolyElement.h" |
| 49 #include "SVGRadialGradientElement.h" | 48 #include "SVGRadialGradientElement.h" |
| 50 #include "SVGRectElement.h" | 49 #include "SVGRectElement.h" |
| 51 #include "SVGStopElement.h" | 50 #include "SVGStopElement.h" |
| 52 #include "SVGStyledElement.h" | 51 #include "SVGStyledElement.h" |
| 52 #include "core/dom/NodeRenderStyle.h" |
| 53 #include "core/platform/graphics/GraphicsTypes.h" | 53 #include "core/platform/graphics/GraphicsTypes.h" |
| 54 #include "core/platform/graphics/Path.h" | 54 #include "core/platform/graphics/Path.h" |
| 55 #include "core/rendering/InlineTextBox.h" | 55 #include "core/rendering/InlineTextBox.h" |
| 56 #include "core/rendering/RenderImage.h" | 56 #include "core/rendering/RenderImage.h" |
| 57 #include "core/rendering/RenderTreeAsText.h" | 57 #include "core/rendering/RenderTreeAsText.h" |
| 58 #include "core/rendering/svg/RenderSVGContainer.h" | 58 #include "core/rendering/svg/RenderSVGContainer.h" |
| 59 #include "core/rendering/svg/RenderSVGGradientStop.h" | 59 #include "core/rendering/svg/RenderSVGGradientStop.h" |
| 60 #include "core/rendering/svg/RenderSVGImage.h" | 60 #include "core/rendering/svg/RenderSVGImage.h" |
| 61 #include "core/rendering/svg/RenderSVGInlineText.h" | 61 #include "core/rendering/svg/RenderSVGInlineText.h" |
| 62 #include "core/rendering/svg/RenderSVGPath.h" | 62 #include "core/rendering/svg/RenderSVGPath.h" |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 ts << " "; | 680 ts << " "; |
| 681 writeStandardPrefix(ts, *filter, 0); | 681 writeStandardPrefix(ts, *filter, 0); |
| 682 ts << " " << filter->resourceBoundingBox(&renderer) << "\n"; | 682 ts << " " << filter->resourceBoundingBox(&renderer) << "\n"; |
| 683 } | 683 } |
| 684 } | 684 } |
| 685 } | 685 } |
| 686 | 686 |
| 687 } // namespace WebCore | 687 } // namespace WebCore |
| 688 | 688 |
| 689 #endif // ENABLE(SVG) | 689 #endif // ENABLE(SVG) |
| OLD | NEW |