summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/test_drag_thumb_in_link.html
blob: 7c39fd0f28dd1e7174f6d8bc3e74b983b1f606dc (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=367028
-->
<head>
<title>Test for Bug 367028</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<style>
#scroller {
  display: block;
  width: 200px;
  height: 100px;
  overflow: scroll;
  background: beige;
  border: 1px solid black;
}

#biggerblock {
  display: block;
  width: 100px;
  height: 150px;
  line-height: 150px;
  white-space: nowrap;
  overflow: hidden;
  background: khaki;
}
</style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=367028">Mozilla Bug 367028</a>
<p id="display"></p>
<div id="content" style="display: none"></div>
<a id="scroller" href="#">
  block anchor<span id="biggerblock">bigger block</span>
</a>
<script type="application/javascript">

function waitForEvent(aTarget, aEvent) {
  return new Promise(aResolve => {
    aTarget.addEventListener(aEvent, aResolve, { once: true });
  });
}

/** Test for Bug 367028 **/

add_task(async function drag_thumb_in_link() {
  let scroller = document.getElementById("scroller");
  scroller.ondragstart = function(e) {
    e.preventDefault();
    ok(false, "dragging on scroller bar should not trigger drag-and-drop operation");
    scroller.ondragstart = null;
  };

  // Click the scroll bar.
  let x = scroller.getBoundingClientRect().width - 5;
  let y = scroller.getBoundingClientRect().height - 70;
  synthesizeMouse(scroller, x, y, { type : "mousedown" }, window);
  synthesizeMouse(scroller, x, y, { type : "mousemove" }, window);

  let scrollPromise = waitForEvent(scroller, "scroll");
  x = scroller.getBoundingClientRect().width + 20;
  y = scroller.getBoundingClientRect().height - 30;
  synthesizeMouse(scroller, x, y, { type : "mousemove" }, window);
  synthesizeMouse(scroller, x, y, { type : "mouseup" }, window);
  await scrollPromise;

  ok(true, "Dragging scroller bar should scroll");
  scroller.ondragstart = null;
});

</script>
</body>
</html>