Closed
Bug 157263
Opened 23 years ago
Closed 23 years ago
Incorrect height rendering in window.open()
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: chris, Assigned: rogerl)
References
()
Details
Attachments
(1 file)
|
644 bytes,
text/html
|
Details |
Hope this is OK, it's my forst report and the helper page would not download.
The following code works fine with IE5.5, Opera 5.12 and Mozilla 0.9.3 (the only
other version I have installed on a PC) but in the 2002061202 opens a window
that is approximately 2/3 of the requested height.
Javascript:
function newWindow(info, w1, h1) {
var params =
'width='+w1+',height='+h1+',resizable=no,scrollbars=no,left=10,top=10,screenX=10,screenY=10'
noticeWindow = window.open(info,'Information',params)
noticeWindow.focus()
}
Calling code:
<a href="javascript:newWindow ('altsys.htm', 750, 400)">etc.
Comment 1•23 years ago
|
||
*** Bug 157264 has been marked as a duplicate of this bug. ***
Comment 2•23 years ago
|
||
This WORKSFORME in 2002071108 on XP on the trunk and 2002071206 on 1.0 branch on
XP.
Reporter: Please try downloading a new nightly of trunk or branch to resolve.
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → WORKSFORME
Comment 3•23 years ago
|
||
Comment 4•23 years ago
|
||
Verified WORKSFORME. When I try the above testcase using Mozilla
trunk binary 20020701xx on WinNT, the child window comes up with
the right width and height. Furthermore, it is identical to the
window that IE6 brings up.
Chris: thank you for this report. If an up-to-date Mozilla build
malfunctions on this, please reopen this bug; thanks -
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•