mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9f03f90fb7
find /files/mozilla/build/d/_tests/testing/mochitest/tests/ | egrep "\.(xhtml|html|xml|js)$" | grep -v SimpleTest | grep -vi mochikit | grep -v simpleThread | grep -v test_ipc_messagemanager_blob.html | grep -v "indexedDB/test" | xargs grep -l Components | xargs grep -L enablePrivilege | perl -pe 's#.*mochitest/tests/##' | xargs perl -p -i.bakkk -e 's/Components\.interfaces(\s|;|\.|\[)/SpecialPowers\.Ci$1/g, s/SpecialPowers\.wrap\(Components\)\.(.)(lasses|tils|nterfaces|esults)/SpecialPowers.C$1/g, s/(?<![\.a-zA-Z])Components/SpecialPowers\.Components/g, s/window\.Components/window\.SpecialPowers\.Components/g'
56 lines
1.5 KiB
HTML
56 lines
1.5 KiB
HTML
<!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 **/
|
|
|
|
function getListenerCount() {
|
|
|
|
var Cc = SpecialPowers.Cc;
|
|
var Ci = SpecialPowers.Ci;
|
|
var dss = Cc["@mozilla.org/devicesensors;1"].getService(Ci.nsIDeviceSensors);
|
|
|
|
return dss.listenerCount(Ci.nsIDeviceSensorData.TYPE_ORIENTATION);
|
|
}
|
|
|
|
var startListenerCount = getListenerCount();
|
|
|
|
function dumbListener(event) {}
|
|
function dumbListener2(event) {}
|
|
|
|
window.addEventListener("deviceorientation", dumbListener, false);
|
|
window.addEventListener("deviceorientation", dumbListener2, false);
|
|
|
|
window.setTimeout(function() {
|
|
|
|
window.removeEventListener("deviceorientation", dumbListener, false);
|
|
window.setTimeout(function() {
|
|
|
|
window.removeEventListener("deviceorientation", dumbListener2, false);
|
|
window.setTimeout(function() {
|
|
is (getListenerCount(), startListenerCount, "Must have the same listeners at this point");
|
|
SimpleTest.finish();
|
|
}, 0);
|
|
}, 0);
|
|
}, 0);
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|