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
|
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
const BUTTON_POSITION_CANCEL = 1;
const BUTTON_POSITION_DONT_SAVE = 2;
function test()
{
waitForExplicitFinish();
// Observer must be attached *before* Scratchpad is opened.
CloseObserver.init();
gBrowser.selectedTab = gBrowser.addTab();
gBrowser.selectedBrowser.addEventListener("load", function onTabLoad() {
gBrowser.selectedBrowser.removeEventListener("load", onTabLoad, true);
openScratchpad(runTests);
}, true);
content.location = "data:text/html;charset=utf8,<p>test browser last window closing</p>";
}
function runTests({ Scratchpad })
{
let browser = Services.wm.getEnumerator("navigator:browser").getNext();
let oldPrompt = Services.prompt;
let button;
Services.prompt = {
confirmEx: () => button
};
Scratchpad.dirty = true;
// Test canceling close.
button = BUTTON_POSITION_CANCEL;
CloseObserver.expectedValue = true;
browser.BrowserTryToCloseWindow();
// Test accepting close.
button = BUTTON_POSITION_DONT_SAVE;
CloseObserver.expectedValue = false;
browser.BrowserTryToCloseWindow();
// Test closing without prompt needed.
Scratchpad.dirty = false;
browser.BrowserTryToCloseWindow();
Services.prompt = oldPrompt;
CloseObserver.uninit();
finish();
}
var CloseObserver = {
expectedValue: null,
init: function ()
{
Services.obs.addObserver(this, "browser-lastwindow-close-requested", false);
},
observe: function (aSubject)
{
aSubject.QueryInterface(Ci.nsISupportsPRBool);
let message = this.expectedValue ? "close" : "stay open";
ok(this.expectedValue === aSubject.data, "Expected browser to " + message);
aSubject.data = true;
},
uninit: function ()
{
Services.obs.removeObserver(this, "browser-lastwindow-close-requested", false);
},
};
|