blob: ba4f89f9298182391bac4d8e98d4326303ecdc1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
diff -p -U 8 -r1.15 nsSVGScriptElement.cpp
--- content/svg/content/src/nsSVGScriptElement.cpp 28 Apr 2005 23:47:55 -0000 1.15
+++ content/svg/content/src/nsSVGScriptElement.cpp 26 Feb 2009 21:03:08 -0000
@@ -177,17 +177,40 @@ nsSVGScriptElement::Init()
}
return NS_OK;
}
//----------------------------------------------------------------------
// nsIDOMNode methods
-NS_IMPL_DOM_CLONENODE_WITH_INIT(nsSVGScriptElement)
+nsresult
+nsSVGScriptElement::CloneNode(PRBool aDeep, nsIDOMNode** aReturn)
+{
+ *aReturn = nsnull;
+
+ nsSVGScriptElement* it = new nsSVGScriptElement(mNodeInfo);
+ if (!it) {
+ return NS_ERROR_OUT_OF_MEMORY;
+ }
+
+ nsCOMPtr<nsIDOMNode> kungFuDeathGrip(it);
+
+ CopyInnerTo(it, aDeep);
+
+ // The clone should be marked evaluated if we are. It should also be marked
+ // evaluated if we're evaluating, to handle the case when this script node's
+ // script clones the node.
+ it->mIsEvaluated = mIsEvaluated || mEvaluating;
+ it->mLineNumber = mLineNumber;
+
+ kungFuDeathGrip.swap(*aReturn);
+
+ return NS_OK;
+}
//----------------------------------------------------------------------
// nsIDOMSVGScriptElement methods
/* attribute DOMString type; */
NS_IMETHODIMP
nsSVGScriptElement::GetType(nsAString & aType)
{
|