зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1251905, part 1 - Make top level of test_continuous_wheel_events.html use pushPrefEnv. r=masayuki
This commit is contained in:
Родитель
7d94b64012
Коммит
d009fe69a7
|
@ -39,7 +39,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="content" style="display: none">
|
<div id="content" style="display: none">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<pre id="test">
|
<pre id="test">
|
||||||
<script type="application/javascript">
|
<script type="application/javascript">
|
||||||
|
@ -3183,58 +3183,33 @@ function testContinuousTrustedEvents()
|
||||||
|
|
||||||
function runTests()
|
function runTests()
|
||||||
{
|
{
|
||||||
SpecialPowers.setIntPref("mousewheel.transaction.timeout", 100000);
|
SpecialPowers.pushPrefEnv({"set": [
|
||||||
|
["mousewheel.transaction.timeout", 100000],
|
||||||
SpecialPowers.setIntPref("mousewheel.default.delta_multiplier_x", 100);
|
["mousewheel.default.delta_multiplier_x", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.default.delta_multiplier_y", 100);
|
["mousewheel.default.delta_multiplier_y", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.default.delta_multiplier_z", 100);
|
["mousewheel.default.delta_multiplier_z", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_alt.delta_multiplier_x", 100);
|
["mousewheel.with_alt.delta_multiplier_x", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_alt.delta_multiplier_y", 100);
|
["mousewheel.with_alt.delta_multiplier_y", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_alt.delta_multiplier_z", 100);
|
["mousewheel.with_alt.delta_multiplier_z", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_control.delta_multiplier_x", 100);
|
["mousewheel.with_control.delta_multiplier_x", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_control.delta_multiplier_y", 100);
|
["mousewheel.with_control.delta_multiplier_y", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_control.delta_multiplier_z", 100);
|
["mousewheel.with_control.delta_multiplier_z", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_meta.delta_multiplier_x", 100);
|
["mousewheel.with_meta.delta_multiplier_x", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_meta.delta_multiplier_y", 100);
|
["mousewheel.with_meta.delta_multiplier_y", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_meta.delta_multiplier_z", 100);
|
["mousewheel.with_meta.delta_multiplier_z", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_shift.delta_multiplier_x", 100);
|
["mousewheel.with_shift.delta_multiplier_x", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_shift.delta_multiplier_y", 100);
|
["mousewheel.with_shift.delta_multiplier_y", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_shift.delta_multiplier_z", 100);
|
["mousewheel.with_shift.delta_multiplier_z", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_win.delta_multiplier_x", 100);
|
["mousewheel.with_win.delta_multiplier_x", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_win.delta_multiplier_y", 100);
|
["mousewheel.with_win.delta_multiplier_y", 100],
|
||||||
SpecialPowers.setIntPref("mousewheel.with_win.delta_multiplier_z", 100);
|
["mousewheel.with_win.delta_multiplier_z", 100]
|
||||||
|
]},
|
||||||
prepareScrollUnits();
|
function () {
|
||||||
testContinuousTrustedEvents();
|
prepareScrollUnits();
|
||||||
|
testContinuousTrustedEvents();
|
||||||
clearPrefs();
|
SimpleTest.finish();
|
||||||
SimpleTest.finish();
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function clearPrefs()
|
|
||||||
{
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.transaction.timeout");
|
|
||||||
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.default.delta_multiplier_x");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.default.delta_multiplier_y");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.default.delta_multiplier_z");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_alt.delta_multiplier_x");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_alt.delta_multiplier_y");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_alt.delta_multiplier_z");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_control.delta_multiplier_x");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_control.delta_multiplier_y");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_control.delta_multiplier_z");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_meta.delta_multiplier_x");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_meta.delta_multiplier_y");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_meta.delta_multiplier_z");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_shift.delta_multiplier_x");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_shift.delta_multiplier_y");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_shift.delta_multiplier_z");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_win.delta_multiplier_x");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_win.delta_multiplier_y");
|
|
||||||
SpecialPowers.clearUserPref("mousewheel.with_win.delta_multiplier_z");
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</pre>
|
</pre>
|
||||||
</body>
|
</body>
|
||||||
|
|
Загрузка…
Ссылка в новой задаче