OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2007, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007, 2008 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2009 Google, Inc. All rights reserved. | 5 * Copyright (C) 2009 Google, Inc. All rights reserved. |
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 28 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
29 #include "core/rendering/LayoutRepainter.h" | 29 #include "core/rendering/LayoutRepainter.h" |
30 #include "core/rendering/RenderView.h" | 30 #include "core/rendering/RenderView.h" |
31 #include "core/rendering/svg/SVGRenderingContext.h" | 31 #include "core/rendering/svg/SVGRenderingContext.h" |
32 #include "core/rendering/svg/SVGResources.h" | 32 #include "core/rendering/svg/SVGResources.h" |
33 #include "core/rendering/svg/SVGResourcesCache.h" | 33 #include "core/rendering/svg/SVGResourcesCache.h" |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 RenderSVGContainer::RenderSVGContainer(SVGStyledElement* node) | 37 RenderSVGContainer::RenderSVGContainer(SVGElement* node) |
38 : RenderSVGModelObject(node) | 38 : RenderSVGModelObject(node) |
39 , m_objectBoundingBoxValid(false) | 39 , m_objectBoundingBoxValid(false) |
40 , m_needsBoundariesUpdate(true) | 40 , m_needsBoundariesUpdate(true) |
41 { | 41 { |
42 } | 42 } |
43 | 43 |
44 RenderSVGContainer::~RenderSVGContainer() | 44 RenderSVGContainer::~RenderSVGContainer() |
45 { | 45 { |
46 } | 46 } |
47 | 47 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 return true; | 183 return true; |
184 } | 184 } |
185 } | 185 } |
186 | 186 |
187 // Spec: Only graphical elements can be targeted by the mouse, period. | 187 // Spec: Only graphical elements can be targeted by the mouse, period. |
188 // 16.4: "If there are no graphics elements whose relevant graphics content
is under the pointer (i.e., there is no target element), the event is not dispat
ched." | 188 // 16.4: "If there are no graphics elements whose relevant graphics content
is under the pointer (i.e., there is no target element), the event is not dispat
ched." |
189 return false; | 189 return false; |
190 } | 190 } |
191 | 191 |
192 } | 192 } |
OLD | NEW |