mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
9 lines
395 B
JavaScript
9 lines
395 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
function test() {
|
|
is(gBrowser.docShell.isActive, true, "Docshell should be active");
|
|
window.minimize();
|
|
is(gBrowser.docShell.isActive, false, "Docshell should be inactive");
|
|
window.restore();
|
|
is(gBrowser.docShell.isActive, true, "Docshell should be active again");
|
|
}
|