Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/events/test/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<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>