I'm trying to create a bookmarklet to do some very specific resizing to do browser size testing, and I can't seem to get the web browser to resize using window.resizeTo.

Overly simplified example that doesn't work:

javascript:window.resizeTo(1024,600);

I can understand that browsers might have disabled this feature, but here's a screenshot of my JavaScript Settings in Firefox:

Advanced JavaScript Settings clearly displaying the "Move or resize existing windows" option as checked

Am I missing something obvious or should I file a bug report?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

According to this bug report, this is a new feature, not a bug. Specifically:

Two rules:

  1. Can't resize a window/tab that hasn't been created by window.open.
  2. Can't resize a tab if the tab is in a window with more than one tab.

If I understand this "fix" correctly, you can resize only your own popup windows, not the main window.

link|improve this answer
Then why doesn't var w=window.open("","","width=100,height=100");w.resizeTo(1024,600); work? – zzzzBov Sep 29 '11 at 19:26
1  
@zzzzBov: Have Firebug installed? Seems there's a bug which interferes with the browser somehow - see comments here and here. And according to this comment, a patch is already committed. – Viktor Sep 29 '11 at 19:36
that explains it – zzzzBov Sep 29 '11 at 19:45
FF took away the ability to use javascript: in the address bar as well, gotta use their Scratchpad. what a pain... window resizing and moving also doesn't work in IE8+. thought I was going mad until I read those "bug" reports. – Matt K Nov 3 '11 at 21:57
I wish they had added some way to specify geometry from the command line before adding this "feature" – Bryan Agee Mar 22 at 6:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.