| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "core/frame/FrameView.h" | 39 #include "core/frame/FrameView.h" |
| 40 #include "core/frame/UseCounter.h" | 40 #include "core/frame/UseCounter.h" |
| 41 #include "core/rendering/RenderObject.h" | 41 #include "core/rendering/RenderObject.h" |
| 42 #include "core/rendering/RenderPart.h" | 42 #include "core/rendering/RenderPart.h" |
| 43 #include "core/rendering/svg/RenderSVGModelObject.h" | 43 #include "core/rendering/svg/RenderSVGModelObject.h" |
| 44 #include "core/rendering/svg/RenderSVGResource.h" | 44 #include "core/rendering/svg/RenderSVGResource.h" |
| 45 #include "core/rendering/svg/RenderSVGRoot.h" | 45 #include "core/rendering/svg/RenderSVGRoot.h" |
| 46 #include "core/rendering/svg/RenderSVGViewportContainer.h" | 46 #include "core/rendering/svg/RenderSVGViewportContainer.h" |
| 47 #include "core/svg/SVGAngle.h" | 47 #include "core/svg/SVGAngle.h" |
| 48 #include "core/svg/SVGElementInstance.h" | 48 #include "core/svg/SVGElementInstance.h" |
| 49 #include "core/svg/SVGFitToViewBox.h" | |
| 50 #include "core/svg/SVGPreserveAspectRatio.h" | 49 #include "core/svg/SVGPreserveAspectRatio.h" |
| 51 #include "core/svg/SVGTransform.h" | 50 #include "core/svg/SVGTransform.h" |
| 52 #include "core/svg/SVGTransformList.h" | 51 #include "core/svg/SVGTransformList.h" |
| 53 #include "core/svg/SVGViewElement.h" | 52 #include "core/svg/SVGViewElement.h" |
| 54 #include "core/svg/SVGViewSpec.h" | 53 #include "core/svg/SVGViewSpec.h" |
| 55 #include "core/svg/animation/SMILTimeContainer.h" | 54 #include "core/svg/animation/SMILTimeContainer.h" |
| 56 #include "platform/FloatConversion.h" | 55 #include "platform/FloatConversion.h" |
| 57 #include "platform/LengthFunctions.h" | 56 #include "platform/LengthFunctions.h" |
| 58 #include "platform/geometry/FloatRect.h" | 57 #include "platform/geometry/FloatRect.h" |
| 59 #include "platform/transforms/AffineTransform.h" | 58 #include "platform/transforms/AffineTransform.h" |
| (...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 continue; | 772 continue; |
| 774 | 773 |
| 775 Element* element = toElement(node); | 774 Element* element = toElement(node); |
| 776 if (element->getIdAttribute() == id) | 775 if (element->getIdAttribute() == id) |
| 777 return element; | 776 return element; |
| 778 } | 777 } |
| 779 return 0; | 778 return 0; |
| 780 } | 779 } |
| 781 | 780 |
| 782 } | 781 } |
| OLD | NEW |