|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 |
|
4 function test() { |
|
5 waitForExplicitFinish(); |
|
6 |
|
7 let callCount = 0; |
|
8 |
|
9 newWindow(function (win) { |
|
10 registerCleanupFunction(function () win.close()); |
|
11 |
|
12 win.TabView._initFrame(function () { |
|
13 is(callCount++, 0, "call count is zero"); |
|
14 ok(win.TabView.getContentWindow().UI, "content window is loaded"); |
|
15 }); |
|
16 |
|
17 win.TabView._initFrame(function () { |
|
18 is(callCount++, 1, "call count is one"); |
|
19 ok(win.TabView.getContentWindow().UI, "content window is loaded"); |
|
20 }); |
|
21 |
|
22 win.TabView._initFrame(function () { |
|
23 is(callCount, 2, "call count is two"); |
|
24 ok(win.TabView.getContentWindow().UI, "content window is loaded"); |
|
25 finish(); |
|
26 }); |
|
27 }); |
|
28 } |
|
29 |
|
30 function newWindow(callback) { |
|
31 let opts = "chrome,all,dialog=no,height=800,width=800"; |
|
32 let win = window.openDialog(getBrowserURL(), "_blank", opts, "about:blank"); |
|
33 whenDelayedStartupFinished(win, () => callback(win)); |
|
34 } |