| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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" | 30 #include "Attribute.h" |
| 31 #include "CachedResourceLoader.h" | |
| 32 #include "CachedResourceRequest.h" | |
| 33 #include "CachedSVGDocument.h" | |
| 34 #include "Document.h" | 31 #include "Document.h" |
| 35 #include "ElementShadow.h" | 32 #include "ElementShadow.h" |
| 36 #include "Event.h" | 33 #include "Event.h" |
| 37 #include "EventListener.h" | 34 #include "EventListener.h" |
| 38 #include "HTMLNames.h" | 35 #include "HTMLNames.h" |
| 39 #include "NodeRenderStyle.h" | 36 #include "NodeRenderStyle.h" |
| 40 #include "NodeTraversal.h" | 37 #include "NodeTraversal.h" |
| 41 #include "RegisteredEventListener.h" | 38 #include "RegisteredEventListener.h" |
| 42 #include "SVGElementInstance.h" | 39 #include "SVGElementInstance.h" |
| 43 #include "SVGElementInstanceList.h" | 40 #include "SVGElementInstanceList.h" |
| 44 #include "SVGElementRareData.h" | 41 #include "SVGElementRareData.h" |
| 45 #include "SVGGElement.h" | 42 #include "SVGGElement.h" |
| 46 #include "SVGLengthContext.h" | 43 #include "SVGLengthContext.h" |
| 47 #include "SVGNames.h" | 44 #include "SVGNames.h" |
| 48 #include "SVGSMILElement.h" | 45 #include "SVGSMILElement.h" |
| 49 #include "SVGSVGElement.h" | 46 #include "SVGSVGElement.h" |
| 50 #include "SVGSymbolElement.h" | 47 #include "SVGSymbolElement.h" |
| 51 #include "ShadowRoot.h" | 48 #include "ShadowRoot.h" |
| 52 #include "StyleResolver.h" | 49 #include "StyleResolver.h" |
| 53 #include "XLinkNames.h" | 50 #include "XLinkNames.h" |
| 54 #include "XMLDocumentParser.h" | 51 #include "XMLDocumentParser.h" |
| 55 #include "XMLSerializer.h" | 52 #include "XMLSerializer.h" |
| 53 #include "core/loader/cache/CachedResourceLoader.h" |
| 54 #include "core/loader/cache/CachedResourceRequest.h" |
| 55 #include "core/loader/cache/CachedSVGDocument.h" |
| 56 #include "core/rendering/svg/RenderSVGResource.h" | 56 #include "core/rendering/svg/RenderSVGResource.h" |
| 57 #include "core/rendering/svg/RenderSVGTransformableContainer.h" | 57 #include "core/rendering/svg/RenderSVGTransformableContainer.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 |
| 62 // Dump the deep-expanded shadow tree (where the renderers are built from) | 62 // Dump the deep-expanded shadow tree (where the renderers are built from) |
| 63 // #define DUMP_SHADOW_TREE | 63 // #define DUMP_SHADOW_TREE |
| 64 | 64 |
| 65 namespace WebCore { | 65 namespace WebCore { |
| (...skipping 939 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 |