For Firefox, the authoritative reference is MDN. A quote from there:
This method is only allowed to be called for windows that were opened by a script using the window.open method. If the window was not opened by a script, the following error appears in the JavaScript Console: Scripts may not close windows that were not opened by script.
Source: https://developer.mozilla.org/en/DOM/window.close
As your webpage was constructed serverside and opened regularly, not by javascript, it won't work in your case.
Note also different behaviour in Internet Explorer:
Invoking the window.close method on a window not opened with script displays a confirmation dialog box. Using script to close the last running instance of Windows Internet Explorer also opens the confirmation dialog box.
So this will work, but with a confirmation.
Finally, I tested it on Opera and it works even on regularly opened windows, just like you said it does in Chrome.
<script type="text/javascript">window.close(); </script>– mgraph May 21 '12 at 15:06<script>. In fact, it settles the problem whether to usetext/javascript,application/javascriptor something else... – Imp May 21 '12 at 15:17