| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> | 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> |
| 6 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 6 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 #include "SVGCursorElement.h" | 30 #include "SVGCursorElement.h" |
| 31 #include "SVGDocumentExtensions.h" | 31 #include "SVGDocumentExtensions.h" |
| 32 #include "SVGElementInstance.h" | 32 #include "SVGElementInstance.h" |
| 33 #include "SVGElementRareData.h" | 33 #include "SVGElementRareData.h" |
| 34 #include "SVGNames.h" | 34 #include "SVGNames.h" |
| 35 #include "SVGSVGElement.h" | 35 #include "SVGSVGElement.h" |
| 36 #include "SVGStyledLocatableElement.h" | 36 #include "SVGStyledLocatableElement.h" |
| 37 #include "SVGTextElement.h" | 37 #include "SVGTextElement.h" |
| 38 #include "ScriptEventListener.h" | |
| 39 #include "XMLNames.h" | 38 #include "XMLNames.h" |
| 39 #include "bindings/v8/ScriptEventListener.h" |
| 40 #include "core/css/CSSCursorImageValue.h" | 40 #include "core/css/CSSCursorImageValue.h" |
| 41 #include "core/dom/DOMImplementation.h" | 41 #include "core/dom/DOMImplementation.h" |
| 42 #include "core/dom/Document.h" | 42 #include "core/dom/Document.h" |
| 43 #include "core/dom/Event.h" | 43 #include "core/dom/Event.h" |
| 44 #include "core/dom/NodeRenderingContext.h" | 44 #include "core/dom/NodeRenderingContext.h" |
| 45 #include "core/rendering/RenderObject.h" | 45 #include "core/rendering/RenderObject.h" |
| 46 | 46 |
| 47 namespace WebCore { | 47 namespace WebCore { |
| 48 | 48 |
| 49 using namespace HTMLNames; | 49 using namespace HTMLNames; |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 if (name == classAttr) | 731 if (name == classAttr) |
| 732 return isSVGStyledElement(); | 732 return isSVGStyledElement(); |
| 733 | 733 |
| 734 return animatableAttributes.contains(name); | 734 return animatableAttributes.contains(name); |
| 735 } | 735 } |
| 736 #endif | 736 #endif |
| 737 | 737 |
| 738 } | 738 } |
| 739 | 739 |
| 740 #endif // ENABLE(SVG) | 740 #endif // ENABLE(SVG) |
| OLD | NEW |