summaryrefslogtreecommitdiffstats
path: root/dom/html/test/bug199692-popup.html
blob: e1389213860d2abacef7d6e240f74d335ab85533 (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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=199692
-->
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>Popup in test for Bug 199692</title>
  <style type="text/css">
#content * {
  border: 2px solid black;
  margin: 2px;
  clear: both;
  height: 20px;
  overflow: hidden; 
}

#txt, #static, #fixed, #absolute, #relative, #hidden, #float, #empty, #static, #relative {
  width: 200px !important;
}
  </style>
  
</head>
<!--
Elements are styled in such a way that they don't overlap visually
unless they also overlap structurally.

This file is designed to be opened from test_bug199692.html in a popup
window, to guarantee that the window in which document.elementFromPoint runs
is large enough to display all the elements being tested.
-->
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=199692">Mozilla Bug 199692</a>

<div id="content" style="width: 500px; background-color: #ccc;">

<!-- element containing text -->
<div id="txt" style="height: 30px;">txt</div>

<!-- element not containing text -->
<div id="empty" style="border: 2px solid blue;"></div>

<!-- element with only whitespace -->
<p id="whitespace" style="border: 2px solid magenta;"> </p>

<!-- position: static -->
<span id="static" style="position: static; border-color: green;">static</span>

<!-- floated element -->
<div id="float" style="border-color: red; float: right;">float</div>

<!-- position: fixed -->
<span id="fixed" style="position: fixed; top: 500px; left: 100px; border: 3px solid yellow;">fixed</span>

<!-- position: absolute -->
<span id="absolute" style="position: absolute; top: 550px; left: 150px; border-color: orange;">abs</span>

<!-- position: relative -->
<div id="relative" style="position: relative; top: 200px; border-color: teal;">rel</div>

<!-- visibility: hidden -->
<div id="hidden-wrapper" style="border: 1px dashed teal;">
    <div id="hidden" style="opacity: 0.5; background-color: blue; visibility:hidden;">hidden</div>
</div>

<!-- iframe (within iframe) -->
<iframe id="our-iframe" src="bug199692-nested.html" style="height: 100px; overflow: scroll;"></iframe>

<input type="textbox" id="textbox" value="textbox"></input>
</div>

<!-- interaction with scrolling -->
<iframe id="scrolled-iframe"
        src="bug199692-scrolled.html#down"
        style="position: absolute; top: 345px; left: 325px; height: 200px; width: 200px"></iframe>

<script type="application/javascript">

var SimpleTest = window.opener.SimpleTest;
function ok() { window.opener.ok.apply(window.opener, arguments); }
function is() { window.opener.is.apply(window.opener, arguments); }
function todo() { window.opener.todo.apply(window.opener, arguments); }
function todo_is() { window.opener.todo_is.apply(window.opener, arguments); }
function $(id) { return document.getElementById(id); }

/**
 * Like is, but for tests which don't always succeed or always fail on all
 * platforms.
 */
function random_fail(a, b, m)
{
  if (a != b)
    todo_is(a, b, m);
  else
    is(a, b, m);
}

/* Test for Bug 199692 */

function getCoords(elt)
{
  var x = 0, y = 0;

  do
  {
    x += elt.offsetLeft;
    y += elt.offsetTop;
  } while ((elt = elt.offsetParent));

  return { x, y };
}

var elts = ["txt", "empty", "whitespace", "static", "fixed", "absolute",
            "relative", "float", "textbox"];

function testPoints()
{
  ok('elementFromPoint' in document, "document.elementFromPoint must exist");
  ok(typeof document.elementFromPoint === "function", "must be a function");
  
  var doc = document;
  doc.pt = doc.elementFromPoint; // for shorter lines
  is(doc.pt(-1, 0), null, "Negative coordinates (-1, 0) should return null");
  is(doc.pt(0, -1), null, "Negative coordinates (0, -1) should return null");
  is(doc.pt(-1, -1), null, "Negative coordinates (-1, -1) should return null");

  var pos;
  for (var i = 0; i < elts.length; i++)
  {
    var id = elts[i];
    var elt = $(id);

    // The upper left corner of an element (with a moderate offset) will
    // usually contain text, and the lower right corner usually won't.
    var pos = getCoords(elt);
    var x = pos.x, y = pos.y;
    var w = elt.offsetWidth, h = elt.offsetHeight;

    var d = 5;
    is(doc.pt(x + d, y + d), elt,
       "(" + (x + d) + "," + (y + d) + ") IDs should match (upper left " +
       "corner of " + id + ")");
    is(doc.pt(x + w - d, y + h - d), elt,
       "(" + (x + w - d) + "," + (y + h - d) + ") IDs should match (lower " +
       "right corner of " + id + ")");
  }

  // content
  var c = $("content");
  pos = getCoords(c);
  x = pos.x + c.offsetWidth / 2;
  y = pos.y;

  // This fails on some platforms but not others for unknown reasons
  random_fail(doc.pt(x, y), c, "Point to right of #txt should be #content");
  is(doc.pt(x, y + 1), c, "Point to right of #txt should be #content");
  random_fail(doc.pt(x + 1, y), c, "Point to right of #txt should be #content");
  is(doc.pt(x + 1, y + 1), c, "Point to right of #txt should be #content");

  // hidden
  c = $("hidden");
  pos = getCoords(c);
  x = pos.x, y = pos.y;
  is(doc.pt(x, y), $("hidden-wrapper"),
     "Hit testing should bypass hidden elements.");

  // iframe nested
  var iframe = $("our-iframe");
  pos = getCoords(iframe);
  x = pos.x, y = pos.y;
  is(doc.pt(x + 20, y + 20), $("our-iframe"),
     "Element from nested iframe returned is from calling document");
  // iframe, doubly nested
  is(doc.pt(x + 60, y + 60), $("our-iframe"),
     "Element from doubly nested iframe returned is from calling document");

  // scrolled iframe tests
  $("scrolled-iframe").contentWindow.runTests();

  SimpleTest.finish();
  window.close();
}

window.onload = testPoints;
</script>
</body>
</html>