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, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
5 * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 5 * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
6 * Copyright (C) 2012 University of Szeged | 6 * Copyright (C) 2012 University of Szeged |
7 * Copyright (C) 2012 Renata Hodovan <reni@webkit.org> | 7 * Copyright (C) 2012 Renata Hodovan <reni@webkit.org> |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
11 * License as published by the Free Software Foundation; either | 11 * License as published by the Free Software Foundation; either |
12 * version 2 of the License, or (at your option) any later version. | 12 * version 2 of the License, or (at your option) any later version. |
13 * | 13 * |
14 * This library is distributed in the hope that it will be useful, | 14 * This library is distributed in the hope that it will be useful, |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 * Library General Public License for more details. | 17 * Library General Public License for more details. |
18 * | 18 * |
19 * You should have received a copy of the GNU Library General Public License | 19 * You should have received a copy of the GNU Library General Public License |
20 * along with this library; see the file COPYING.LIB. If not, write to | 20 * along with this library; see the file COPYING.LIB. If not, write to |
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
23 */ | 23 */ |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 | 26 |
27 #if ENABLE(SVG) | 27 #if ENABLE(SVG) |
28 #include "SVGUseElement.h" | 28 #include "SVGUseElement.h" |
29 | 29 |
30 #include "Attribute.h" | |
31 #include "Document.h" | |
32 #include "ElementShadow.h" | |
33 #include "Event.h" | |
34 #include "EventListener.h" | |
35 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
36 #include "NodeRenderStyle.h" | |
37 #include "NodeTraversal.h" | |
38 #include "RegisteredEventListener.h" | |
39 #include "SVGElementInstance.h" | 31 #include "SVGElementInstance.h" |
40 #include "SVGElementInstanceList.h" | 32 #include "SVGElementInstanceList.h" |
41 #include "SVGElementRareData.h" | 33 #include "SVGElementRareData.h" |
42 #include "SVGGElement.h" | 34 #include "SVGGElement.h" |
43 #include "SVGLengthContext.h" | 35 #include "SVGLengthContext.h" |
44 #include "SVGNames.h" | 36 #include "SVGNames.h" |
45 #include "SVGSMILElement.h" | 37 #include "SVGSMILElement.h" |
46 #include "SVGSVGElement.h" | 38 #include "SVGSVGElement.h" |
47 #include "SVGSymbolElement.h" | 39 #include "SVGSymbolElement.h" |
48 #include "ShadowRoot.h" | |
49 #include "XLinkNames.h" | 40 #include "XLinkNames.h" |
50 #include "XMLSerializer.h" | 41 #include "XMLSerializer.h" |
51 #include "core/css/StyleResolver.h" | 42 #include "core/css/StyleResolver.h" |
| 43 #include "core/dom/Attribute.h" |
| 44 #include "core/dom/Document.h" |
| 45 #include "core/dom/ElementShadow.h" |
| 46 #include "core/dom/Event.h" |
| 47 #include "core/dom/EventListener.h" |
| 48 #include "core/dom/NodeRenderStyle.h" |
| 49 #include "core/dom/NodeTraversal.h" |
| 50 #include "core/dom/RegisteredEventListener.h" |
| 51 #include "core/dom/ShadowRoot.h" |
52 #include "core/loader/cache/CachedResourceLoader.h" | 52 #include "core/loader/cache/CachedResourceLoader.h" |
53 #include "core/loader/cache/CachedResourceRequest.h" | 53 #include "core/loader/cache/CachedResourceRequest.h" |
54 #include "core/loader/cache/CachedSVGDocument.h" | 54 #include "core/loader/cache/CachedSVGDocument.h" |
55 #include "core/rendering/svg/RenderSVGResource.h" | 55 #include "core/rendering/svg/RenderSVGResource.h" |
56 #include "core/rendering/svg/RenderSVGTransformableContainer.h" | 56 #include "core/rendering/svg/RenderSVGTransformableContainer.h" |
57 #include "core/xml/parser/XMLDocumentParser.h" | 57 #include "core/xml/parser/XMLDocumentParser.h" |
58 | 58 |
59 // Dump SVGElementInstance object tree - useful to debug instanceRoot problems | 59 // Dump SVGElementInstance object tree - useful to debug instanceRoot problems |
60 // #define DUMP_INSTANCE_TREE | 60 // #define DUMP_INSTANCE_TREE |
61 | 61 |
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 m_cachedDocument->removeClient(this); | 1005 m_cachedDocument->removeClient(this); |
1006 | 1006 |
1007 m_cachedDocument = cachedDocument; | 1007 m_cachedDocument = cachedDocument; |
1008 if (m_cachedDocument) | 1008 if (m_cachedDocument) |
1009 m_cachedDocument->addClient(this); | 1009 m_cachedDocument->addClient(this); |
1010 } | 1010 } |
1011 | 1011 |
1012 } | 1012 } |
1013 | 1013 |
1014 #endif // ENABLE(SVG) | 1014 #endif // ENABLE(SVG) |
OLD | NEW |