blob: 92c8d90c1f3489fb2816dc523e8040ae70cfcfa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function run_test() {
// Make sure that getting both nsIAuthPrompt and nsIAuthPrompt2 works
// (these should work independently of whether the application has
// nsIPromptService)
var ww = Cc["@mozilla.org/embedcomp/window-watcher;1"].getService();
var prompt;
prompt = ww.nsIWindowWatcher.getNewPrompter(null);
Assert.notEqual(prompt, null);
prompt = ww.nsIWindowWatcher.getNewAuthPrompter(null);
Assert.notEqual(prompt, null);
prompt = ww.nsIPromptFactory.getPrompt(null, Ci.nsIPrompt);
Assert.notEqual(prompt, null);
prompt = ww.nsIPromptFactory.getPrompt(null, Ci.nsIAuthPrompt);
Assert.notEqual(prompt, null);
prompt = ww.nsIPromptFactory.getPrompt(null, Ci.nsIAuthPrompt2);
Assert.notEqual(prompt, null);
}
|