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
|
/* Any copyright is dedicated to the public domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Bug 804446 - Test that window.open(javascript:..) works with <iframe mozbrowser>.
"use strict";
SimpleTest.waitForExplicitFinish();
browserElementTestHelpers.setEnabledPref(true);
browserElementTestHelpers.addPermission();
function runTest() {
var iframeJS = document.createElement('iframe');
iframeJS.setAttribute('mozbrowser', 'true');
iframeJS.addEventListener('mozbrowserloadstart', function(e) {
ok(false, "This should not happen!");
});
iframeJS.addEventListener('mozbrowserloadend', function(e) {
ok(false, "This should not happen!");
});
iframeJS.src = 'javascript:alert("Foo");';
document.body.appendChild(iframeJS);
var iframe = document.createElement('iframe');
iframe.setAttribute('mozbrowser', 'true');
var gotPopup = false;
iframe.addEventListener('mozbrowseropenwindow', function(e) {
is(gotPopup, false, 'Should get just one popup.');
gotPopup = true;
document.body.appendChild(e.detail.frameElement);
});
iframe.addEventListener('mozbrowsershowmodalprompt', function(e) {
ok(gotPopup, 'Got mozbrowseropenwindow event before showmodalprompt event.');
if (e.detail.message.indexOf("success") == 0) {
ok(true, e.detail.message);
SimpleTest.finish();
}
else {
ok(false, "Got invalid message: " + e.detail.message);
}
});
iframe.src = 'file_browserElement_FrameWrongURI.html';
document.body.appendChild(iframe);
}
addEventListener('testready', runTest);
|