summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/test_bug369950.html
blob: d53f6b70a97824a457a349d214e001857c7c4aad (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=369950
-->
<head>
  <title>Test for Bug 369950</title>
  <script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
  <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"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=369950">Mozilla Bug 369950</a>
<p id="display">
  <iframe id="i" src="bug369950-subframe.xml" width="200" height="100"></iframe>
</p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 369950 **/
SimpleTest.waitForExplicitFinish();

addLoadEvent(function() {
  // Can't just run our code here, because we might not have painting
  // unsuppressed yet.  Do it async.
  SimpleTest.executeSoon(doTheTest);
});

function doTheTest() {
  // do a layout flush
  var rect = $("i").getBoundingClientRect();
  var rect2 = $("i").contentDocument.documentElement.getBoundingClientRect();

  // And do the rest of it later
  SimpleTest.executeSoon(reallyDoTheTest);
}

function reallyDoTheTest() {
  var rect = $("i").getBoundingClientRect();
  var rect2 = $("i").contentDocument.documentElement.getBoundingClientRect();

  // We want coords relative to the iframe, so subtract off rect2.left/top.
  // 7px is a guess to get us from the bottom of the iframe into the scrollbar
  // groove for the horizontal scrollbar on the bottom.
  synthesizeMouse($("i").contentDocument.documentElement,
                  -rect2.left + rect.width / 2,  rect.height - rect2.top - 7,
                  {}, $("i").contentWindow);
  // Scroll is async, so give it time
  SimpleTest.executeSoon(checkScroll);
};

function checkScroll() {
  // do a layout flush
  var rect = $("i").getBoundingClientRect();
  // And do the rest of it later
  SimpleTest.executeSoon(reallyCheckScroll);
}

function reallyCheckScroll() {
  var rect = $("i").getBoundingClientRect();
  var rect2 = $("i").contentDocument.documentElement.getBoundingClientRect();
  isnot($("i").contentWindow.scrollX, 0, "Clicking scrollbar should scroll");

  // Not doing things below here, since avoiding the scroll arrows
  // cross-platform is a huge pain.
  SimpleTest.finish();
  return;

  // 8px horizontal offset is a guess to get us into the scr
  synthesizeMouse($("i").contentDocument.documentElement, -rect2.left + 8,
                  rect.height - rect2.top - 7, {}, $("i").contentWindow);
  // Scroll is async, so give it time
  SimpleTest.executeSoon(finishUp);
}

function finishUp() {
  is($("i").contentWindow.scrollX, 0, "Clicking scrollbar should scroll back");
  SimpleTest.finish();
};




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