browser/components/tabview/test/browser_tabview_bug651311.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* Any copyright is dedicated to the Public Domain.
     2    http://creativecommons.org/publicdomain/zero/1.0/ */
     4 function test() {
     5   waitForExplicitFinish();
     7   let callCount = 0;
     9   newWindow(function (win) {
    10     registerCleanupFunction(function () win.close());
    12     win.TabView._initFrame(function () {
    13       is(callCount++, 0, "call count is zero");
    14       ok(win.TabView.getContentWindow().UI, "content window is loaded");
    15     });
    17     win.TabView._initFrame(function () {
    18       is(callCount++, 1, "call count is one");
    19       ok(win.TabView.getContentWindow().UI, "content window is loaded");
    20     });
    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 }
    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 }

mercurial