30 lines
816 B
HTML
30 lines
816 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=422132
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 422132</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.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=422132">Mozilla Bug 422132</a>
|
|
<script>
|
|
SimpleTest.waitForExplicitFinish();
|
|
SpecialPowers.pushPrefEnv(
|
|
{
|
|
set: [["general.smoothScroll", false],
|
|
["mousewheel.min_line_scroll_amount", 1],
|
|
["mousewheel.system_scroll_override.enabled", false],
|
|
["mousewheel.transaction.timeout", 100000],
|
|
["test.events.async.enabled", true]]
|
|
},
|
|
() =>
|
|
{
|
|
window.open("file_bug422132.html", "_blank");
|
|
}
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|