summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug456151.html
blob: 7b0cb22776fc389ecb0ed2aefe2d66e4b7650782 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=456151
-->
<head>
  <title>Test for Bug 456151</title>
  <script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.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=456151">Mozilla Bug 456151</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 456151 **/
var intercepted = false;

// Set up our new addEventListener
var proto = HTMLParagraphElement.prototype;
proto.oldAdd = proto.addEventListener;
proto.addEventListener = function(ev, list, capt) {
  intercepted = true;
  this.oldAdd(ev, list, capt);
}
proto.oldRemove = proto.removeEventListener;
proto.removeEventListener = function(ev, list, capt) {
  intercepted = true;
  this.oldRemove(ev, list, capt);
}

var called = false;

var func = function() { called = true; };
$("display").addEventListener("click", func);
is(intercepted, true, "Should have interecepted addEventListener call");

sendMouseEvent({type: "click"}, "display");
is(called, true, "Should have called event listener");

interecepted = false;
called = false;

$("display").removeEventListener("click", func);
is(intercepted, true, "Should have interecepted removeEventListener call");

sendMouseEvent({type: "click"}, "display");
is(called, false, "Should have removed event listener");

// And now some simple sanity tests
var recursion = false;
var x = document.createElement("span");
HTMLSpanElement.prototype.addEventListener =
  function(a, b, c) {
    return x.addEventListener(a,b,c);
  }
try {
  x.addEventListener("click", function() { called = true; });
} catch (e) {
  recursion = e.message.match(/recursion/);
}
SimpleTest.isDeeply(recursion, ["recursion"], "Caught infinite recursion");

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