| 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 18 matching lines...) Expand all Loading... |
| 29 #include "SVGAngle.h" | 29 #include "SVGAngle.h" |
| 30 #include "SVGElementInstance.h" | 30 #include "SVGElementInstance.h" |
| 31 #include "SVGFitToViewBox.h" | 31 #include "SVGFitToViewBox.h" |
| 32 #include "SVGNames.h" | 32 #include "SVGNames.h" |
| 33 #include "SVGPreserveAspectRatio.h" | 33 #include "SVGPreserveAspectRatio.h" |
| 34 #include "SVGTransform.h" | 34 #include "SVGTransform.h" |
| 35 #include "SVGTransformList.h" | 35 #include "SVGTransformList.h" |
| 36 #include "SVGViewElement.h" | 36 #include "SVGViewElement.h" |
| 37 #include "SVGViewSpec.h" | 37 #include "SVGViewSpec.h" |
| 38 #include "SVGZoomEvent.h" | 38 #include "SVGZoomEvent.h" |
| 39 #include "ScriptEventListener.h" | 39 #include "bindings/v8/ScriptEventListener.h" |
| 40 #include "core/css/CSSHelper.h" | 40 #include "core/css/CSSHelper.h" |
| 41 #include "core/dom/Attribute.h" | 41 #include "core/dom/Attribute.h" |
| 42 #include "core/dom/Document.h" | 42 #include "core/dom/Document.h" |
| 43 #include "core/dom/EventListener.h" | 43 #include "core/dom/EventListener.h" |
| 44 #include "core/dom/EventNames.h" | 44 #include "core/dom/EventNames.h" |
| 45 #include "core/dom/NodeTraversal.h" | 45 #include "core/dom/NodeTraversal.h" |
| 46 #include "core/dom/StaticNodeList.h" | 46 #include "core/dom/StaticNodeList.h" |
| 47 #include "core/editing/FrameSelection.h" | 47 #include "core/editing/FrameSelection.h" |
| 48 #include "core/page/Frame.h" | 48 #include "core/page/Frame.h" |
| 49 #include "core/page/FrameTree.h" | 49 #include "core/page/FrameTree.h" |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 Element* element = toElement(node); | 777 Element* element = toElement(node); |
| 778 if (element->getIdAttribute() == id) | 778 if (element->getIdAttribute() == id) |
| 779 return element; | 779 return element; |
| 780 } | 780 } |
| 781 return 0; | 781 return 0; |
| 782 } | 782 } |
| 783 | 783 |
| 784 } | 784 } |
| 785 | 785 |
| 786 #endif // ENABLE(SVG) | 786 #endif // ENABLE(SVG) |
| OLD | NEW |