law%netscape.com b35682051c updates
git-svn-id: svn://10.0.0.236/trunk@109681 18797224-902f-48f8-a5cc-f745e15eee43
2001-12-04 23:16:42 +00:00

32 lines
966 B
XML

<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
<!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="open10Windows"
onload="onload();">
<script type="application/x-javascript">
<![CDATA[
const n = 11;
var sub = [];
function onload() {
var i = n;
while( i-- ) {
window.setTimeout( 'sub[n] = openMiniXul();', i*1000 );
}
window.setTimeout( 'shutDown();', n*1000 );
}
function openMiniXul(n) {
return window.openDialog("chrome://navigator/content/miniXul.xul","_blank","","chrome,all");
}
function shutDown() {
var i = n;
while( i-- ) {
sub[i].close();
}
window.close();
}
]]>
</script>
</window>