Closed
Bug 61983
Opened 24 years ago
Closed 24 years ago
opened window to which document is written lacks scrollbars
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
People
(Reporter: martin.honnen, Assigned: jst)
Details
Attachments
(1 file)
(deleted),
text/html
|
Details |
The following code opens a new window and document.writes some hundred lines to
it. Mozilla (2000112520) doesn't manage to display the requested and necessary
scrollbars.
function openWin () {
var w = open('about:blank', 'output', 'scrollbars=1,resizable=1');
w.document.open();
for (var i = 0; i < 100; i++)
w.document.write(i + ' Kibology.<BR>');
w.document.close();
}
openWin();
Reporter | ||
Comment 1•24 years ago
|
||
Assignee | ||
Comment 2•24 years ago
|
||
*** This bug has been marked as a duplicate of 55334 ***
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
Verified dupe of bug 55334: "No scollbars for javascript generated content"
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•