~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/svg/SVGUseElement.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mto: (4.4.1 sid) (1.2.2 upstream) (16.1.1 lucid)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090515183058-35m5or0ufm5tutud
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "config.h"
24
24
 
25
 
// Dump SVGElementInstance object tree - useful to debug instanceRoot problems
26
 
// #define DUMP_INSTANCE_TREE
27
 
 
28
 
// Dump the deep-expanded shadow tree (where the renderes are built from)
29
 
// #define DUMP_SHADOW_TREE
30
 
 
31
25
#if ENABLE(SVG)
32
26
#include "SVGUseElement.h"
33
27
 
37
31
#include "Event.h"
38
32
#include "EventListener.h"
39
33
#include "HTMLNames.h"
 
34
#include "MappedAttribute.h"
40
35
#include "NodeRenderStyle.h"
41
36
#include "RegisteredEventListener.h"
42
37
#include "RenderSVGTransformableContainer.h"
51
46
#include "XLinkNames.h"
52
47
#include "XMLSerializer.h"
53
48
 
 
49
// Dump SVGElementInstance object tree - useful to debug instanceRoot problems
 
50
// #define DUMP_INSTANCE_TREE
 
51
 
 
52
// Dump the deep-expanded shadow tree (where the renderers are built from)
 
53
// #define DUMP_SHADOW_TREE
 
54
 
54
55
namespace WebCore {
55
56
 
56
57
SVGUseElement::SVGUseElement(const QualifiedName& tagName, Document* doc)