Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | function test() { |
michael@0 | 5 | waitForExplicitFinish(); |
michael@0 | 6 | |
michael@0 | 7 | let callCount = 0; |
michael@0 | 8 | |
michael@0 | 9 | newWindow(function (win) { |
michael@0 | 10 | registerCleanupFunction(function () win.close()); |
michael@0 | 11 | |
michael@0 | 12 | win.TabView._initFrame(function () { |
michael@0 | 13 | is(callCount++, 0, "call count is zero"); |
michael@0 | 14 | ok(win.TabView.getContentWindow().UI, "content window is loaded"); |
michael@0 | 15 | }); |
michael@0 | 16 | |
michael@0 | 17 | win.TabView._initFrame(function () { |
michael@0 | 18 | is(callCount++, 1, "call count is one"); |
michael@0 | 19 | ok(win.TabView.getContentWindow().UI, "content window is loaded"); |
michael@0 | 20 | }); |
michael@0 | 21 | |
michael@0 | 22 | win.TabView._initFrame(function () { |
michael@0 | 23 | is(callCount, 2, "call count is two"); |
michael@0 | 24 | ok(win.TabView.getContentWindow().UI, "content window is loaded"); |
michael@0 | 25 | finish(); |
michael@0 | 26 | }); |
michael@0 | 27 | }); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | function newWindow(callback) { |
michael@0 | 31 | let opts = "chrome,all,dialog=no,height=800,width=800"; |
michael@0 | 32 | let win = window.openDialog(getBrowserURL(), "_blank", opts, "about:blank"); |
michael@0 | 33 | whenDelayedStartupFinished(win, () => callback(win)); |
michael@0 | 34 | } |