summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug946632.html
blob: 3ef7b815fd7e4faafe34104f401e2a7042ba44fe (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!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>