Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!weretis.net!feeder1.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Thomas 'PointedEars' Lahn Newsgroups: comp.lang.javascript Subject: Re: window.open allowing image to scale Date: Wed, 04 Jun 2014 11:28:41 +0200 Organization: PointedEars Software (PES) Lines: 46 Message-ID: <2020767.akXlH5UOMh@PointedEars.de> References: <_oqdnbF7roH_oBDOnZ2dnUVZ_qudnZ2d@westnet.com.au> Reply-To: Thomas 'PointedEars' Lahn Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8Bit X-Trace: solani.org 1401874122 10420 eJwNwocRwDAIBLCVjPmnjENJ9h8hOYlqYuMwGvj+gFAXkZoNnjt9l5ua1/fJ0ow4NUQjpcH5AAU8EHQ= (4 Jun 2014 09:28:42 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Wed, 4 Jun 2014 09:28:42 +0000 (UTC) User-Agent: KNode/4.12.4 X-User-ID: eJwFwYEBwCAIA7CXEFpYzxmK/59gwsiVu5BM8PLOhhSsgLH7yMxLuAOdsnbsUIMRodUuZP1yfDbKHkrzAChpFDQ= Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEXTxa4RFk5dUWANED8PFEfy7+MGBiW+n3ZNF/QuAAACaElEQVQ4jVXUwVOcMBQG8Dc7Rc4PUntdWV2uxjDpGaGeozOp1woar4jd5t/v9wLstMwsA/ntlxdCAgUc1hjTc9/JCZfGoo3wG3HdmdAWrIJRHe7GM/TmpY5VFefuVcAkkPbLIaN8rmPmjloyZxgyR3GuJ4K0AGtJ2htz8o7yqikm759fldQXaMpbDzjKAG+8v+AugVTOPO5DOjLvGtUYQwh0CPjnVMyGd+8/GfUB5nLKJDD2aLDh5HYyMDJGDwQIo2ZmZcKbowNmAdB/AzyFhrmF2MHRb0QJJfaAnwGB6orZhoykLzJtGwF/xpYxI1dswomiUj3gTuAIqCn/4C7cULwGNBtwMTk3Y4LfKB5YUaOKBKYtpplm7u0vip8tU1NWWyI/7XdcSuIDoMt6rVHMWT0DbjHPGqDqZVSa6zleLcUTcIKLoMv3ueJluALtAo9B302zPPlrtiVScRdCjXvVh3e3JpYa/jjkuC9N+LrBMlz/eAN4eQijX2EdLo6c5tGGHwLyHFtXk89dDGHwCVhG9T0S/j55AhRZgkMCmUQXJ49TnS1wnQDvw0eAh9ICeMmEFbCnPMFzjAvsWoEWEFdYEx+S0MoUZ1gT1wId8+AF3Bl2OoEu906AUHx5VLw/gXYg/x84loOah/2UYNrgiwSwGO7RfUzVBbx/kgpckumGOi6QirtD6gkLTitbnxNol47S2jVc2vsN5kPqaAHT8uUdAJM4v/DanjYOwmUjWznGfwB7sGtAtor5BgofDuzaRj4kSQAqDakTsKORa3Q3xKi3gE1fhl71KRMqrdZ2AWNNg/YOhQyrVBnb+i+nEg4bsDA+egAAAABJRU5ErkJggg== X-Face: %i>XG-yXR'\"2P/C_aO%~;2o~?g0pPKmbOw^=NT`tprDEf++D.m7"}HW6.#=U:?2GGctkL,f89@H46O$ASoW&?s}.k+&. Andrew Poulos wrote on 03 jun 2014 in > comp.lang.javascript: It is called attribution *line*, _not_ attribution novel. >> To answer my own question, I just did this >> >> var myPop = window.open("","","width=240,height=320,resizable,status=0); >> myPop.document.open(); > > this .document.open() is not needed, it is implicit. Only with HTML5: vs. >> myPop.document.write(""); >> myPop.document.close(); > > this .document.close() is not needed, Wrong. Because a script-created parser has no information about whether further content will be generated by script, the explicit document.close() is necessary to close the input stream for a document *created* with scripting. Otherwise that document will load forever, and indicate that to the user by “wait”-shape pointer cursor. > unless you want a second .document.write() > to overwrite the document by inducing the implicit .open() No, a second document.write() call will send further content to the same input stream unless it has been closed. -- PointedEars FAQ: | SVN: Twitter: @PointedEars2 | ES Matrix: Please do not Cc: me. / Bitte keine Kopien per E-Mail.