2010-11-05 09:04:28 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=574663
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 574663</title>
|
|
|
|
<script type="application/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=574663">Mozilla Bug 574663</a>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script type="application/javascript;version=1.7">
|
|
|
|
|
|
|
|
/** Test for Bug 574663 **/
|
|
|
|
|
|
|
|
function sendTouchpadScrollMotion(scrollbox, direction, ctrl, momentum) {
|
|
|
|
var win = scrollbox.ownerDocument.defaultView;
|
|
|
|
let event = {
|
2012-08-11 18:42:36 -07:00
|
|
|
deltaMode: WheelEvent.DOM_DELTA_PIXEL,
|
|
|
|
deltaY: direction * 3,
|
|
|
|
lineOrPageDeltaY: direction,
|
|
|
|
ctrlKey: ctrl,
|
|
|
|
isMomentum: momentum
|
2010-11-05 09:04:28 -07:00
|
|
|
};
|
2012-08-11 18:42:36 -07:00
|
|
|
synthesizeWheel(scrollbox, 10, 10, event, win);
|
|
|
|
// then 5 additional pixel scrolls
|
|
|
|
event.lineOrPageDeltaY = 0;
|
2010-11-05 09:04:28 -07:00
|
|
|
for (let i = 0; i < 5; ++i) {
|
2012-08-11 18:42:36 -07:00
|
|
|
synthesizeWheel(scrollbox, 10, 10, event, win);
|
2010-11-05 09:04:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function runTest() {
|
|
|
|
var win = open('data:text/html,<!DOCTYPE html>\n' +
|
|
|
|
'<div id="scrollbox" style="height: 100px; overflow: auto;">' +
|
|
|
|
' <div style="height: 1000px;"></div>' +
|
|
|
|
'</div>', '_blank', 'width=300,height=300');
|
|
|
|
SimpleTest.waitForFocus(function () {
|
|
|
|
var scrollbox = win.document.getElementById("scrollbox");
|
2012-08-23 11:45:28 -07:00
|
|
|
let winUtils = SpecialPowers.getDOMWindowUtils(win);
|
2010-11-05 09:04:28 -07:00
|
|
|
let outstandingTests = [
|
|
|
|
[false, false],
|
|
|
|
[false, true],
|
|
|
|
[true, false],
|
|
|
|
[true, true],
|
|
|
|
];
|
|
|
|
function nextTest() {
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
if (!outstandingTests.length) {
|
|
|
|
win.close();
|
|
|
|
clearPrefs();
|
|
|
|
SimpleTest.finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let [ctrlKey, isMomentum] = outstandingTests.shift();
|
|
|
|
let scrollTopBefore = scrollbox.scrollTop;
|
|
|
|
let zoomFactorBefore = winUtils.screenPixelsPerCSSPixel;
|
|
|
|
sendTouchpadScrollMotion(scrollbox, 1, ctrlKey, isMomentum);
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
if (!ctrlKey) {
|
|
|
|
let postfix = isMomentum ? ", even after releasing the touchpad" : "";
|
|
|
|
// Normal scroll: scroll
|
|
|
|
is(winUtils.screenPixelsPerCSSPixel, zoomFactorBefore, "Normal scrolling shouldn't change zoom" + postfix);
|
|
|
|
isnot(scrollbox.scrollTop, scrollTopBefore, "Normal scrolling should scroll" + postfix);
|
|
|
|
} else {
|
|
|
|
if (!isMomentum) {
|
|
|
|
isnot(winUtils.screenPixelsPerCSSPixel, zoomFactorBefore, "Ctrl-scrolling should zoom while the user is touching the touchpad");
|
|
|
|
is(scrollbox.scrollTop, scrollTopBefore, "Ctrl-scrolling shouldn't scroll while the user is touching the touchpad");
|
|
|
|
} else {
|
|
|
|
is(winUtils.screenPixelsPerCSSPixel, zoomFactorBefore, "Momentum scrolling shouldn't zoom, even when pressing Ctrl");
|
|
|
|
isnot(scrollbox.scrollTop, scrollTopBefore, "Momentum scrolling should scroll, even when pressing Ctrl");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Revert the effect.
|
|
|
|
sendTouchpadScrollMotion(scrollbox, -1, ctrlKey, isMomentum);
|
2012-04-30 10:44:55 -07:00
|
|
|
setTimeout(nextTest, 20);
|
|
|
|
}, 20);
|
2010-11-05 09:04:28 -07:00
|
|
|
}
|
|
|
|
nextTest();
|
|
|
|
}, win);
|
|
|
|
}
|
|
|
|
|
|
|
|
function initPrefs()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var prefSvc = Components.classes["@mozilla.org/preferences-service;1"].
|
2012-02-25 14:34:25 -08:00
|
|
|
getService(Components.interfaces.nsIPrefBranch);
|
2012-01-13 16:26:34 -08:00
|
|
|
prefSvc.setBoolPref("general.smoothScroll", false);
|
2010-11-05 09:04:28 -07:00
|
|
|
// Disables the app level scroll acceleration
|
|
|
|
prefSvc.setIntPref("mousewheel.acceleration.start", -1);
|
|
|
|
prefSvc.setBoolPref("mousewheel.system_scroll_override_on_root_content.enabled", false);
|
2010-11-26 15:30:32 -08:00
|
|
|
// Enable zooming for ctrl-scrolling
|
2012-08-11 18:42:35 -07:00
|
|
|
prefSvc.setIntPref("mousewheel.with_control.action", 3);
|
2010-11-05 09:04:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function clearPrefs()
|
|
|
|
{
|
|
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
|
|
var prefSvc = Components.classes["@mozilla.org/preferences-service;1"].
|
2012-02-25 14:34:25 -08:00
|
|
|
getService(Components.interfaces.nsIPrefBranch);
|
2010-11-05 09:04:28 -07:00
|
|
|
|
2012-01-13 16:26:34 -08:00
|
|
|
prefSvc.clearUserPref("general.smoothScroll");
|
|
|
|
prefSvc.clearUserPref("mousewheel.acceleration.start");
|
|
|
|
prefSvc.clearUserPref("mousewheel.system_scroll_override_on_root_content.enabled");
|
2012-08-11 18:42:35 -07:00
|
|
|
prefSvc.clearUserPref("mousewheel.with_control.action");
|
2010-11-05 09:04:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
window.onload = function () {
|
|
|
|
initPrefs();
|
|
|
|
SimpleTest.executeSoon(runTest);
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|