summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug607464.html
blob: b9a176ae33a585385f4a50a8446413b34b23554a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=607464
-->
<head>
  <title>Test for Bug 607464</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="text/javascript" src="/tests/gfx/layers/apz/test/mochitest/apz_test_utils.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=607464">Mozilla Bug 607464</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script type="application/javascript">

/**
 * Test for Bug 607464:
 * Pixel scrolling shouldn't scroll smoothly, even if general.smoothScroll is on.
 **/

function scrollDown150PxWithPixelScrolling(scrollbox) {
  var win = scrollbox.ownerDocument.defaultView;
  let event = {
    deltaMode: WheelEvent.DOM_DELTA_PIXEL,
    deltaY: 30.0,
    lineOrPageDeltaY: 1
  };
  // A pixel scroll with lineOrPageDeltaY.
  synthesizeWheel(scrollbox, 10, 10, event, win);
  // then 4 pixel scrolls without lineOrPageDeltaY.
  event.lineOrPageDeltaY = 0;
  for (let i = 0; i < 4; ++i) {
    synthesizeWheel(scrollbox, 10, 10, event, win);
  }

  // Note: the line scroll shouldn't have any effect because it has
  // hasPixels = true set on it. We send it to emulate normal
  // behavior.
}

function runTest() {
  var win = open('bug607464.html', '_blank', 'width=300,height=300');
  SimpleTest.waitForFocus(function () {
    var scrollbox = win.document.getElementById("scrollbox");
    let scrollTopBefore = scrollbox.scrollTop;

    win.addEventListener("scroll", function(e) {
      is(scrollbox.scrollTop % 30, 0,
         "Pixel scrolling should happen instantly, not smoothly. The " +
         "scroll position " + scrollbox.scrollTop + " in this sequence of wheel " +
         "events should be a multiple of 30.");
      if (scrollbox.scrollTop == 150) {
        win.close();
        SimpleTest.finish();
      }
    }, true);

    promiseOnlyApzControllerFlushed(win).then(function() {
      scrollDown150PxWithPixelScrolling(scrollbox);
    });
  }, win);
}

window.onload = function() {
  SpecialPowers.pushPrefEnv({
    "set":[["general.smoothScroll", true],
           ["mousewheel.acceleration.start", -1],
           ["mousewheel.system_scroll_override.enabled", false]]}, runTest);
}

SimpleTest.waitForExplicitFinish();
SimpleTest.testInChaosMode();

</script>
</pre>

</body>
</html>