Closed
Bug 1680
Opened 26 years ago
Closed 26 years ago
crash trying to bring up a window
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
CLOSED
WORKSFORME
M4
People
(Reporter: kipp, Assigned: vidur)
Details
The following HTML causes a crash:
--CUT HERE--
<HTML>
<HEAD>
<STYLE type="text/css">
</STYLE>
<SCRIPT>
var logWindow;
function log(msg)
{
if (null == logWindow) {
logWindow = window.open("logindex.html",'tCw','width=500,height=200');
}
var doc = logWindow.document;
var text = doc.createTextNode(msg);
// var br = createBreak(null);
doc.appendChild(text);
// doc.appendChild(br);
}
function runAllTests()
{
log("Here we go...");
log("Task Complete <beep>.");
}
</SCRIPT>
</HEAD>
<BODY ONLOAD="runAllTests();">
</BODY>
</HTML>
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•26 years ago
|
||
Haven't had a chance to debug this yet, but it's probably a DUP of the bug that
relates to the fact that a document isn't created at the same time as a new
window.
Comment 3•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
QA contact re-assigned according to the product areas we're currently working
on.
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Comment 6•26 years ago
|
||
The window.open works fine. The text doesn't display because it's being appended
to the document and not the document.body.
Updated•26 years ago
|
Status: RESOLVED → CLOSED
Comment 7•26 years ago
|
||
Closing this bug since there are no crashes while bringing up the window,
and there are other bugs for window.open not working. This is working for
viewer, but its not opening window in apprunner. Marking this bug as closed.
You need to log in
before you can comment on or make changes to this bug.
Description
•