mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
9 lines
392 B
JavaScript
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");
|
|
}
|