Closed
Bug 414619
Opened 18 years ago
Closed 18 years ago
Cannot resize some kind of windows with text out of screen
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 177838
People
(Reporter: o2627091, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.8) Gecko/20071008 Firefox/2.0.0.8 FireShot/0.32
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.8) Gecko/20071008 Firefox/2.0.0.8 FireShot/0.32
There are some unresizable windows opened via javascript that should be able to be resizable.
Reproducible: Always
Steps to Reproduce:
1. Go to http://www.keecua.com/
2. Click on "Sign up via SSL"
3. A new windows that cannot be resized will be opened. A lot of text out of screen
Actual Results:
You cannot resize windows.
Expected Results:
You should be able to resize window.
Set this to true in about:config:
'dom.disable_window_move_resize'
This will disable javascript from resizing windows and should help you out so that it wont get resized too small.
it was already set to true, and with both false and true i see no difference.
Comment 3•18 years ago
|
||
I can't find "Sign up via SSL" or at least, the find bar doesn't find it.
Maybe changing the value of the pref dom.disable_window_open_feature.resizable will work?
When I tried I guessed it was "(en servidor seguro SSL)" located under the huge button in the top left of the screen.
Comment 5•18 years ago
|
||
<a style="font-size:11px;" href="javascript:void(null)" onClick="return gt__md();">(en servidor seguro SSL)</a>
function gt__sp(){
gt__w=window.open(gt__rsip,'GT__SIP',gt__ws);
if ((gt__w != null)&&(!gt__isie||(gt__bma >= 5))) gt__w.focus();
}
gt__ws="status=1,location=0,scrollbars=1,resizeable=yes,width=400,height="+gt__ph;
As you can see, it is written "resizeable" and not "resizable" so that's why the window is not resizable!
Reporter, if you can reach the webmaster of that website, just tell him to change resizeable to resizable in that gt__ws variable assignment/definition.
-------
Also, setting location=0 will not be honored starting with Firefox 3.
http://developer.mozilla.org/en/docs/DOM:window.open#Toolbar_and_chrome_features
Bug 337344: Change default dom.disable_window_open_feature.location to true
------
Bug 177838: Make all popup windows resizable, ignoring resizable=no
is FIXED. So, this bug should not occur, should not happen in Firefox 3 (rv:1.9b3).
Resolving as DUPLICATE of bug 177838
Status: UNCONFIRMED → RESOLVED
Closed: 18 years ago
Resolution: --- → DUPLICATE
Comment 6•18 years ago
|
||
> Set this to true in about:config:
>
> 'dom.disable_window_move_resize'
>
> This will disable javascript from resizing windows and should help you out so
> that it wont get resized too small.
Kurt, the about:config property he should be looking for is
dom.disable_window_open_feature.resizable
This bug (and the 2 mistakes involving it) proves overwhelmingly very well how important bug 177838 and what I've been saying from the beginning:
{
Most web authors do not even know that they have to explicitly declare
windowFeatures that are turn on when the windowFeatures string list is not
empty. A missing "resizable=yes" becomes an implicit "resizable=no" in such
cases
}
An explicit "resizeable=yes" becomes in reality an implicit "resizable=no".
Well than you all. I have contacted already tech department of the webpage. And second, setting dom.disable_window_open_feature.resizable to True now makes the pop-up resizable.
There should be such an option in Options -> Content -> Advanced or in some place.
I am not sure but I think that in firefox 1.5 there were more advanced options?
This problems occurs too when you click to see comments in blogspot and comments are opened in a new windows.
Comment 9•18 years ago
|
||
> There should be such an option in Options -> Content -> Advanced or in some
place.
No, I disagree and explained so in bug 177838 (see comment 4).
Bastard, you may want to visit:
Bug 176304 – Option to disallow scripts from hiding toolbars
Bug 304339 – disable annoyance: prevent javascript making windows unresizable
(was indirectly resolved as duplicate of bug 259190 and bug 176304)
Bug 69099 – Alt/F10/context menu item to make hidden menubar visible
Bug 26353 – Can't turn chrome back on in chromeless window
Firefox Tips and Tricks; Disable Other JavaScript Window Features
http://www.mozilla.org/support/firefox/tips#beh_window_open_feature
> in firefox 1.5 there were more advanced options?
Firefox 1.5 is done, is over and no longer maintained. Next month, Firefox 3 will be out...
> This problems occurs too when you click to see comments in blogspot and
comments are opened in a new windows.
Same problem? Can you contact the webmaster?
| Reporter | ||
Comment 10•18 years ago
|
||
I think blogspot made that intentionally:
onclick='javascript:window.open(this.href, "bloggerPopup", "toolbar=0,location=0,statusbar=1,menubar=0,scrollbars=yes,width=400,height=450");
but i override all that **** setting this in about:config
user_pref("dom.disable_window_move_resize", true);
user_pref("dom.disable_window_open_feature.close", true);
user_pref("dom.disable_window_open_feature.directories", true);
user_pref("dom.disable_window_open_feature.location", true);
user_pref("dom.disable_window_open_feature.menubar", true);
user_pref("dom.disable_window_open_feature.minimizable", true);
user_pref("dom.disable_window_open_feature.personalbar", true);
user_pref("dom.disable_window_open_feature.resizable", true);
user_pref("dom.disable_window_open_feature.scrollbars", true);
user_pref("dom.disable_window_open_feature.status", true);
user_pref("dom.disable_window_open_feature.titlebar", true);
user_pref("dom.disable_window_open_feature.toolbar", true);
user_pref("dom.disable_window_status_change", true);
And WORKS!
You need to log in
before you can comment on or make changes to this bug.
Description
•