summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug260264.html
blob: 420281858b0b48bfc62e59ad8478903f18f1cc93 (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 type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" 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.waitForExplicitFinish();
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") };


function run_tests() {
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  window.open.close().then(() => {
    SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 3]]}, run_tests2);
  });
}

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);
  window.open.close(1).then(() => {
    send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkBlocked);
    send(a, "mouseup", checkBlocked);
    return window.open.close();
  }).then(() => {
    ok(count > 0, "Windows left open by previous tests?");
    while (count --> 0)
      send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkBlocked);
    return window.open.close();
  }).then(() => {

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

function run_tests3() {
  send(a, "mouseover", checkBlocked);
  window.open.close().then(() => {
    SpecialPowers.pushPermissions([{'type': 'popup', 'allow': ALLOW_ACTION, 'context': document}], function() {
      SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 3]]}, run_tests4);
    });
  });
}

function run_tests4() {
  var count;
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  window.open.close().then(() => {
    send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkOpened);
    return window.open.close();
  }).then(() => {
    for (count = 0, n = 0; n < 3; n++)
      send(a, "mouseover", function() { if (window.open("http://example.com")) count++ });
    send(a, "mouseover", checkBlocked);
    return window.open.close(1);
  }).then(() => {
    send(a, "mouseover", checkOpened);
    send(a, "mouseover", checkBlocked);
    send(a, "mouseover", checkBlocked);
    return window.open.close();
  }).then(() => {
    ok(count > 0, "Windows left open by previous tests?");
    while (count --> 0)
      send(a, "mouseover", checkOpened);
    send(a, "mouseover", checkBlocked);
    return window.open.close();
  }).then(() => {
    SpecialPowers.pushPrefEnv({"set": [["dom.popup_allowed_events", "click"]]}, run_tests5);
  });
}

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

function run_tests6() {
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  window.open.close().then(() => {
    SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 2]]}, run_tests7);
  });
}

function run_tests7() {
  send(a, "mouseup", checkBlocked);
  window.open.close().then(() => {
    send(a, "mouseover", checkBlocked);
    return window.open.close();
  }).then(() => {
    SpecialPowers.pushPermissions([{'type': 'popup', 'allow': ALLOW_ACTION, 'context': document}], function() {
      SpecialPowers.pushPrefEnv({"set": [["dom.popup_maximum", 3]]}, run_tests8);
    });
  });
}

function run_tests8() {
  var count;
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  send(a, "click", checkOpened);
  window.open.close().then(() => {
    for (count = 0, n = 0; n < 3; n++)
      send(a, "mouseup", function() { if (window.open("http://example.com")) count++ });
    send(a, "mouseup", checkBlocked);
    return window.open.close(1);
  }).then(() => {
    send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkBlocked);
    send(a, "mouseup", checkBlocked);
    return window.open.close();
  }).then(() => {
    ok(count > 0, "Windows left open by previous tests?");
    while (count --> 0)
      send(a, "mouseup", checkOpened);
    send(a, "mouseup", checkBlocked);
    return window.open.close();
  }).then(() => {
    for (count = 0, n = 0; n < 3; n++)
      send(a, "mouseover", function() { if (window.open("http://example.com")) count++ });
    send(a, "mouseover", checkBlocked);
    return window.open.close(1);
  }).then(() => {
    send(a, "mouseover", checkOpened);
    send(a, "mouseover", checkBlocked);
    send(a, "mouseover", checkBlocked);
    return window.open.close();
  }).then(() => {
    ok(count > 0, "Windows left open by previous tests?");
    while (count --> 0)
      send(a, "mouseover", checkOpened);
    send(a, "mouseover", checkBlocked);
    return window.open.close();
  }).then(() => {
    SimpleTest.finish();
  });
}

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

function check_sanity2() {
  ok(SpecialPowers.testPermission('popup', ALLOW_ACTION, document), 'popup value should have ALLOW permission');
  SpecialPowers.pushPrefEnv({"set": [["dom.disable_open_during_load", true],
                                     ["dom.popup_allowed_events", "click mouseup"],
                                     ["dom.popup_maximum", 3]]}, function() {
    // Note: UNKNOWN_ACTION is the same as DENY_ACTION.
    SpecialPowers.pushPermissions([{'type': 'popup', 'allow': DENY_ACTION, 'context': document}], run_tests);
  });
}

setTimeout(function() {
  SpecialPowers.pushPermissions([{'type': 'popup', 'remove': true, 'context': document}], check_sanity);
}, 200);

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