summaryrefslogtreecommitdiffstats
path: root/dom/svg/test/test_valueLeaks.xhtml
blob: d80a5cf25fe4fd6cac07f1468716b98625246c7c (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=467671
-->
<head>
  <title>Test for Bug 467671</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=467671">Mozilla Bug 467671</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">
<![CDATA[

/** Test for Bug 467671 **/

function storeSVGPropertyAsExpando(localName, prop)
{
    var elem = document.createElementNS("http://www.w3.org/2000/svg", localName);

    elem.addEventListener("click", function(){}, false);

    var propVal = elem[prop];
    Object.prototype.toSource[prop + "_expando"] = propVal;
    if (propVal instanceof SVGAnimatedAngle || propVal instanceof SVGAnimatedLength ||
        propVal instanceof SVGAnimatedRect || propVal instanceof SVGAnimatedPreserveAspectRatio) {
        Object.prototype.toSource[prop + "_baseVal_expando"] = propVal.baseVal;
        Object.prototype.toSource[prop + "_animVal_expando"] = propVal.animVal;
    }
}

// class
storeSVGPropertyAsExpando("marker", "class");

// angle
storeSVGPropertyAsExpando("marker", "orientAngle");

// viewBox
storeSVGPropertyAsExpando("marker", "viewBox");

// preserveAspectRatio
storeSVGPropertyAsExpando("marker", "preserveAspectRatio");

// boolean
storeSVGPropertyAsExpando("feConvolveMatrix", "preserveAlpha");

// enum
storeSVGPropertyAsExpando("feConvolveMatrix", "edgeMode");

// special marker enum
storeSVGPropertyAsExpando("marker", "orientType");

// integer
storeSVGPropertyAsExpando("feConvolveMatrix", "orderX");

// length
storeSVGPropertyAsExpando("feConvolveMatrix", "x");

// number
storeSVGPropertyAsExpando("feConvolveMatrix", "divisor");

// string
storeSVGPropertyAsExpando("feConvolveMatrix", "in1");

var elem1 = document.createElementNS("http://www.w3.org/2000/svg", "switch");
var elem2 = document.createElementNS("http://www.w3.org/2000/svg", "rect");
elem1.appendChild(elem2);
document.getElementById("content").appendChild(elem1);

elem2.addEventListener("click", function(){}, false);

Object.prototype.toSource.expando = elem1;

ok(true, "SVG shouldn't leak.");

]]>
</script>
</pre>
</body>
</html>