summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug260264.html
blob: 9259320b4bb93558614c7d50b3f9d9514f26e218 (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
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=260264
-->
<head>
  <title>Test for Bug 260264</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="application/javascript" src="utils_bug260264.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=260264">Mozilla Bug 260264</a>
<p id="display">
  <a id="link" href="javascript:(function(){})()">link</a>
</p>
<div id="content" style="display: none">

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

/** Test for Bug 260264 **/

SimpleTest.requestFlakyTimeout("untriaged");

var a = $("link"),
    checkOpened = function() { ok(window.open("http://example.com"), "not properly opened") },
    checkBlocked = function() { ok(!window.open("http://example.com"), "not properly blocked") };

add_task(async function check_sanity() {
  await new Promise(resolve => setTimeout(resolve, 200));

  await SpecialPowers.pushPermissions([{'type': 'popup', 'remove': true, 'context': document}]);
  ok(await SpecialPowers.testPermission('popup', UNKNOWN_ACTION, document), 'popup value should have UNKNOWN permission');

  await SpecialPowers.pushPermissions([{'type': 'popup', 'allow': true, 'context': document}]);
  ok(await SpecialPowers.testPermission('popup', ALLOW_ACTION, document), 'popup value should have ALLOW permission');

  await SpecialPowers.pushPrefEnv({"set": [["dom.disable_open_during_load", true],
                                     ["dom.popup_allowed_events", "click mouseup"],
                                     ["dom.popup_maximum", 3]]});

  // Note: UNKNOWN_ACTION is the same as DENY_ACTION.
  await SpecialPowers.pushPermissions([{'type': 'popup', 'allow': DENY_ACTION, 'context': document}]);
});

add_task(async function run_tests() {
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  await window.open.close();

  await SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 3]]});
});

add_task(async function run_tests2() {
  for (var count = 0, n = 0; n < 3; n++) {
    send(a, "mouseup", function() { if (window.open("http://example.com")) count++ });
  }
  send(a, "mouseup", checkBlocked);

  await window.open.close(1);
  send(a, "mouseup", checkOpened);
  send(a, "mouseup", checkBlocked);
  send(a, "mouseup", checkBlocked);

  await window.open.close();
  ok(count > 0, "Windows left open by previous tests?");
  while (count --> 0) {
    send(a, "mouseup", checkOpened);
  }
  send(a, "mouseup", checkBlocked);

  await window.open.close();
  await SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 2]]});
});

add_task(async function run_tests3() {
  send(a, "mouseover", checkBlocked);

  await window.open.close();
  await SpecialPowers.pushPermissions([{'type': 'popup', 'allow': ALLOW_ACTION, 'context': document}]);
  await SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 3]]});
});

add_task(async function run_tests4() {
  var count;
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);

  await window.open.close();
  send(a, "mouseup", checkOpened);
  send(a, "mouseup", checkOpened);
  send(a, "mouseup", checkOpened);
  send(a, "mouseup", checkOpened);

  await window.open.close();
  for (count = 0, n = 0; n < 3; n++) {
    send(a, "mouseover", function() { if (window.open("http://example.com")) count++ });
  }
  send(a, "mouseover", checkBlocked);

  await window.open.close(1);
  send(a, "mouseover", checkOpened);
  send(a, "mouseover", checkBlocked);
  send(a, "mouseover", checkBlocked);

  await window.open.close();
  ok(count > 0, "Windows left open by previous tests?");
  while (count --> 0) {
    send(a, "mouseover", checkOpened);
  }
  send(a, "mouseover", checkBlocked);

  await window.open.close();
  await SpecialPowers.pushPrefEnv({"set": [["dom.popup_allowed_events", "click"]]});
});

add_task(async function run_tests5() {
  await SpecialPowers.pushPermissions([{'type': 'popup', 'allow': DENY_ACTION, 'context': document}]);
});

add_task(async function run_tests6() {
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);

  await window.open.close();
  await SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 2]]});
});

add_task(async function run_tests7() {
  send(a, "mouseup", checkBlocked);

  await window.open.close();
  send(a, "mouseover", checkBlocked);

  await window.open.close();
  await SpecialPowers.pushPermissions([{'type': 'popup', 'allow': ALLOW_ACTION, 'context': document}]);
  await SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 3]]});
});

add_task(async function run_tests8() {
  var count;
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);

  await window.open.close();
  for (count = 0, n = 0; n < 3; n++) {
    send(a, "mouseup", function() { if (window.open("http://example.com")) count++ });
  }
  send(a, "mouseup", checkBlocked);

  await window.open.close(1);
  send(a, "mouseup", checkOpened);
  send(a, "mouseup", checkBlocked);
  send(a, "mouseup", checkBlocked);

  await window.open.close();
  ok(count > 0, "Windows left open by previous tests?");
  while (count --> 0) {
    send(a, "mouseup", checkOpened);
  }
  send(a, "mouseup", checkBlocked);

  await window.open.close();
  for (count = 0, n = 0; n < 3; n++) {
    send(a, "mouseover", function() { if (window.open("http://example.com")) count++ });
  }
  send(a, "mouseover", checkBlocked);

  await window.open.close(1);
  send(a, "mouseover", checkOpened);
  send(a, "mouseover", checkBlocked);
  send(a, "mouseover", checkBlocked);

  await window.open.close();
  ok(count > 0, "Windows left open by previous tests?");
  while (count --> 0) {
    send(a, "mouseover", checkOpened);
  }
  send(a, "mouseover", checkBlocked);

  await window.open.close();
});

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