blob: 3bee4554a0d9a722602ed1a2f7dcd07274713ff5 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<!DOCTYPE HTML>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=502673
-->
<head>
<title>Test for Bug 502673</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body onload="doTest();">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=502673">Mozilla Bug 502673</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 502673 **/
SimpleTest.waitForExplicitFinish();
function listener() {
}
listener.prototype =
{
NotifyDocumentWillBeDestroyed: function () {
if (this.input instanceof SpecialPowers.Ci.nsIDOMNSEditableElement) {
var editor = SpecialPowers.wrap(this.input).editor;
editor.removeDocumentStateListener(this);
}
},
NotifyDocumentCreated: function () {
},
NotifyDocumentStateChanged: function (aNowDirty) {
if (this.input instanceof SpecialPowers.Ci.nsIDOMNSEditableElement) {
var editor = SpecialPowers.wrap(this.input).editor;
editor.removeDocumentStateListener(this);
}
},
QueryInterface: SpecialPowers.wrapCallback(function(iid) {
if (iid.equals(SpecialPowers.Ci.nsIDocumentStateListener) ||
iid.equals(SpecialPowers.Ci.nsISupports))
return this;
throw SpecialPowers.Cr.NS_ERROR_NO_INTERFACE;
}),
};
function doTest() {
var input = document.getElementById("ip");
if (input instanceof SpecialPowers.Ci.nsIDOMNSEditableElement) {
// Add multiple listeners to the same editor
var editor = SpecialPowers.wrap(input).editor;
var listener1 = new listener();
listener1.input = input;
var listener2 = new listener();
listener2.input = input;
var listener3 = new listener();
listener3.input = input;
editor.addDocumentStateListener(listener1);
editor.addDocumentStateListener(listener2);
editor.addDocumentStateListener(listener3);
// Test 1. Fire NotifyDocumentStateChanged notifications where the
// listeners remove themselves
input.value = "mozilla";
editor.undo(1);
// Report success if we get here - clearly we didn't crash
ok(true, "Multiple listeners removed themselves after " +
"NotifyDocumentStateChanged notifications - didn't crash");
// Add the listeners again for the next test
editor.addDocumentStateListener(listener1);
editor.addDocumentStateListener(listener2);
editor.addDocumentStateListener(listener3);
}
// Test 2. Fire NotifyDocumentWillBeDestroyed notifications where the
// listeners remove themselves (though in the real world, listeners
// shouldn't do this as nsEditor::PreDestroy removes them as
// listeners anyway)
document.body.removeChild(input);
ok(true, "Multiple listeners removed themselves after " +
"NotifyDocumentWillBeDestroyed notifications - didn't crash");
// TODO: Test for NotifyDocumentCreated
SimpleTest.finish();
}
</script>
</pre>
<input type="text" id="ip" />
</body>
</html>
|