mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
162 lines
4.8 KiB
HTML
162 lines
4.8 KiB
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<!--
|
||
|
https://bugzilla.mozilla.org/show_bug.cgi?id=946632
|
||
|
-->
|
||
|
<head>
|
||
|
<title>Test for bug 946632 - propagate mouse-wheel vertical scroll events to container</title>
|
||
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||
|
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
||
|
<script type="application/javascript" src="/tests/SimpleTest/paint_listener.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||
|
<style>
|
||
|
.scrollable {
|
||
|
overflow: scroll;
|
||
|
height: 200px;
|
||
|
width: 200px;
|
||
|
}
|
||
|
input {
|
||
|
font-size: 72px;
|
||
|
height: 20px;
|
||
|
width: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=946632">Mozilla Bug 946632</a>
|
||
|
<p id="display"></p>
|
||
|
<div id="container" class="scrollable">
|
||
|
<input value="value">
|
||
|
x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>
|
||
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||
|
</div>
|
||
|
<div id="content" style="display: none">
|
||
|
|
||
|
</div>
|
||
|
<pre id="test">
|
||
|
<script type="application/javascript">
|
||
|
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
SimpleTest.waitForFocus(function() {
|
||
|
SpecialPowers.pushPrefEnv({
|
||
|
"set":[["general.smoothScroll", false],
|
||
|
["mousewheel.system_scroll_override_on_root_content.enabled", false]]
|
||
|
}, runTests)
|
||
|
}, window);
|
||
|
|
||
|
var input = document.querySelector("input");
|
||
|
var container = document.querySelector("#container");
|
||
|
|
||
|
function reset()
|
||
|
{
|
||
|
container.scrollTop = 0;
|
||
|
container.scrollLeft = 0;
|
||
|
input.scrollTop = 0;
|
||
|
input.scrollLeft = 0;
|
||
|
container.style.display='none';
|
||
|
container.getBoundingClientRect();
|
||
|
}
|
||
|
|
||
|
function prepare(check)
|
||
|
{
|
||
|
container.style.display='';
|
||
|
container.getBoundingClientRect();
|
||
|
scrollHandler = function(event) {
|
||
|
window.removeEventListener("scroll", arguments.callee, true);
|
||
|
event.stopPropagation();
|
||
|
check(event)
|
||
|
setTimeout(nextTest,0);
|
||
|
};
|
||
|
window.addEventListener("scroll", scrollHandler, true);
|
||
|
}
|
||
|
|
||
|
var tests = [
|
||
|
{
|
||
|
check: function(event) {
|
||
|
is(event.target, container, "<input> vertical line scroll targets container");
|
||
|
ok(container.scrollTop > 0, "<input> vertical line scroll container.scrollTop");
|
||
|
is(container.scrollLeft, 0, "<input> vertical line scroll container.scrollLeft");
|
||
|
is(input.scrollTop, 0, "<input> horizontal line scroll input.scrollTop");
|
||
|
is(input.scrollLeft, 0, "<input> horizontal line scroll input.scrollLeft");
|
||
|
},
|
||
|
event: {
|
||
|
deltaMode: WheelEvent.DOM_DELTA_LINE,
|
||
|
deltaY: 1.0,
|
||
|
lineOrPageDeltaY: 1,
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
check: function(event) {
|
||
|
is(event.target, input, "<input> horizontal line scroll targets <input>");
|
||
|
is(input.scrollTop, 0, "<input> horizontal line scroll input.scrollTop");
|
||
|
ok(input.scrollLeft > 0, "<input> horizontal line scroll input.scrollLeft");
|
||
|
is(container.scrollTop, 0, "<input> horizontal line scroll container.scrollTop");
|
||
|
is(container.scrollLeft, 0, "<input> horizontal line scroll container.scrollLeft");
|
||
|
},
|
||
|
event: {
|
||
|
deltaMode: WheelEvent.DOM_DELTA_LINE,
|
||
|
deltaX: 1.0,
|
||
|
lineOrPageDeltaX: 1
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
check: function(event) {
|
||
|
is(event.target, container, "<input> vertical page scroll targets container");
|
||
|
ok(container.scrollTop > 0, "<input> vertical line scroll container.scrollTop");
|
||
|
is(container.scrollLeft, 0, "<input> vertical line scroll container.scrollLeft");
|
||
|
is(input.scrollTop, 0, "<input> vertical page scroll input.scrollTop");
|
||
|
is(input.scrollLeft, 0, "<input> vertical page scroll input.scrollLeft");
|
||
|
},
|
||
|
event: {
|
||
|
deltaMode: WheelEvent.DOM_DELTA_PAGE,
|
||
|
deltaY: 1.0,
|
||
|
lineOrPageDeltaY: 1
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
check: function(event) {
|
||
|
is(event.target, input, "<input> horizontal page scroll targets <input>");
|
||
|
is(input.scrollTop, 0, "<input> horizontal page scroll input.scrollTop");
|
||
|
ok(input.scrollLeft > 0, "<input> horizontal page scroll input.scrollLeft");
|
||
|
is(container.scrollTop, 0, "<input> horizontal page scroll container.scrollTop");
|
||
|
is(container.scrollLeft, 0, "<input> horizontal page scroll container.scrollLeft");
|
||
|
},
|
||
|
event: {
|
||
|
deltaMode: WheelEvent.DOM_DELTA_PAGE,
|
||
|
deltaX: 1.0,
|
||
|
lineOrPageDeltaX: 1
|
||
|
}
|
||
|
},
|
||
|
];
|
||
|
|
||
|
var i = 0;
|
||
|
function nextTest()
|
||
|
{
|
||
|
if (i == tests.length) {
|
||
|
SpecialPowers.DOMWindowUtils.restoreNormalRefresh();
|
||
|
SimpleTest.finish();
|
||
|
return;
|
||
|
}
|
||
|
var test = tests[i];
|
||
|
++i;
|
||
|
reset();
|
||
|
|
||
|
window.waitForAllPaintsFlushed(function() {
|
||
|
prepare(test.check);
|
||
|
|
||
|
sendWheelAndPaint(input, 5, 5, test.event, function() {
|
||
|
// Do nothing - we wait for the scroll event.
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function runTests()
|
||
|
{
|
||
|
nextTest();
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</pre>
|
||
|
</body>
|
||
|
</html>
|