2012-06-10 16:44:50 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=402089
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 742376</title>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="text/javascript" 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=742376">Mozilla Bug 742376</a>
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
|
|
|
|
/** Test for Bug 742376 **/
|
|
|
|
|
2012-10-20 21:40:56 -07:00
|
|
|
function hasListeners() {
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2012-09-24 05:46:29 -07:00
|
|
|
var Cc = SpecialPowers.Cc;
|
|
|
|
var Ci = SpecialPowers.Ci;
|
2012-06-10 16:44:50 -07:00
|
|
|
var dss = Cc["@mozilla.org/devicesensors;1"].getService(Ci.nsIDeviceSensors);
|
|
|
|
|
2012-10-20 21:40:56 -07:00
|
|
|
return dss.hasWindowListener(Ci.nsIDeviceSensorData.TYPE_ORIENTATION, window);
|
2012-06-10 16:44:50 -07:00
|
|
|
}
|
|
|
|
|
2012-10-20 21:40:56 -07:00
|
|
|
is(hasListeners(), false, "Must not have listeners before tests start");
|
2012-06-10 16:44:50 -07:00
|
|
|
|
|
|
|
function dumbListener(event) {}
|
|
|
|
function dumbListener2(event) {}
|
|
|
|
|
|
|
|
window.addEventListener("deviceorientation", dumbListener, false);
|
|
|
|
window.addEventListener("deviceorientation", dumbListener2, false);
|
|
|
|
|
2012-10-20 21:40:56 -07:00
|
|
|
is(hasListeners(), true, "Listeners should have been added");
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
window.setTimeout(function() {
|
|
|
|
|
|
|
|
window.removeEventListener("deviceorientation", dumbListener, false);
|
2012-10-20 21:40:56 -07:00
|
|
|
is(hasListeners(), true, "Only some listeners should have been removed");
|
2012-06-10 16:44:50 -07:00
|
|
|
window.setTimeout(function() {
|
|
|
|
|
|
|
|
window.removeEventListener("deviceorientation", dumbListener2, false);
|
|
|
|
window.setTimeout(function() {
|
2012-10-20 21:40:56 -07:00
|
|
|
is(hasListeners(), false, "Listeners should have been removed");
|
2012-06-10 16:44:50 -07:00
|
|
|
SimpleTest.finish();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|