| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 3 * Copyright (C) 2006 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
| 4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> | 5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> |
| 6 * Copyright (C) 2009 Google, Inc. | 6 * Copyright (C) 2009 Google, Inc. |
| 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * along with this library; see the file COPYING.LIB. If not, write to | 21 * along with this library; see the file COPYING.LIB. If not, write to |
| 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 23 * Boston, MA 02110-1301, USA. | 23 * Boston, MA 02110-1301, USA. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 | 27 |
| 28 #if ENABLE(SVG) | 28 #if ENABLE(SVG) |
| 29 #include "core/rendering/svg/RenderSVGImage.h" | 29 #include "core/rendering/svg/RenderSVGImage.h" |
| 30 | 30 |
| 31 #include "Attr.h" | |
| 32 #include "SVGImageElement.h" | 31 #include "SVGImageElement.h" |
| 33 #include "SVGLength.h" | 32 #include "SVGLength.h" |
| 34 #include "SVGPreserveAspectRatio.h" | 33 #include "SVGPreserveAspectRatio.h" |
| 34 #include "core/dom/Attr.h" |
| 35 #include "core/platform/FloatConversion.h" | 35 #include "core/platform/FloatConversion.h" |
| 36 #include "core/platform/graphics/FloatQuad.h" | 36 #include "core/platform/graphics/FloatQuad.h" |
| 37 #include "core/platform/graphics/GraphicsContext.h" | 37 #include "core/platform/graphics/GraphicsContext.h" |
| 38 #include "core/rendering/LayoutRepainter.h" | 38 #include "core/rendering/LayoutRepainter.h" |
| 39 #include "core/rendering/PointerEventsHitRules.h" | 39 #include "core/rendering/PointerEventsHitRules.h" |
| 40 #include "core/rendering/RenderImageResource.h" | 40 #include "core/rendering/RenderImageResource.h" |
| 41 #include "core/rendering/RenderLayer.h" | 41 #include "core/rendering/RenderLayer.h" |
| 42 #include "core/rendering/svg/RenderSVGResourceContainer.h" | 42 #include "core/rendering/svg/RenderSVGResourceContainer.h" |
| 43 #include "core/rendering/svg/RenderSVGResourceFilter.h" | 43 #include "core/rendering/svg/RenderSVGResourceFilter.h" |
| 44 #include "core/rendering/svg/SVGRenderingContext.h" | 44 #include "core/rendering/svg/SVGRenderingContext.h" |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 { | 210 { |
| 211 // this is called from paint() after the localTransform has already been app
lied | 211 // this is called from paint() after the localTransform has already been app
lied |
| 212 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); | 212 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); |
| 213 if (!contentRect.isEmpty()) | 213 if (!contentRect.isEmpty()) |
| 214 rects.append(contentRect); | 214 rects.append(contentRect); |
| 215 } | 215 } |
| 216 | 216 |
| 217 } // namespace WebCore | 217 } // namespace WebCore |
| 218 | 218 |
| 219 #endif // ENABLE(SVG) | 219 #endif // ENABLE(SVG) |
| OLD | NEW |