gecko-dev/browser/base/content/test/browser_minimize.js
2011-07-11 09:19:41 -04:00

9 lines
392 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
function test() {
is(gBrowser.docShellIsActive, true, "Docshell should be active");
window.minimize();
is(gBrowser.docShellIsActive, false, "Docshell should be inactive");
window.restore();
is(gBrowser.docShellIsActive, true, "Docshell should be active again");
}