Closed
Bug 176723
Opened 22 years ago
Closed 22 years ago
mozilla dies from javascript recursion
Categories
(Core :: Security, defect)
Tracking
()
People
(Reporter: konrad_miller, Assigned: security-bugs)
References
()
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020918
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020918
heres the code:
<script>
function pop()
{
url = "http://www.google.com";
window.open(url, "mooh","toolbar=0,location=0, \
directories=0,status=0,menubar=0,scrollbars=no, \
resizable=yes,width=505,height=100,screenX=0,\
screen Y=0");
pop();
}
pop();
</script>
Reproducible: Always
Steps to Reproduce:
1.just visit a page that contains the above code
2.
3.
Actual Results:
mozilla crashes
Expected Results:
Handle the error in some way.
![]() |
||
Updated•22 years ago
|
Summary: mozilla dies from javascript recursion → mozilla dies from javascript recursion
Whiteboard: DUPEME
Comment 1•22 years ago
|
||
*** This bug has been marked as a duplicate of 77271 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Comment 2•22 years ago
|
||
This should be dupped to bug 13350 since it has nothing to do with "events".
Comment 3•22 years ago
|
||
On the other hand, bug 13350 doesn't mention recursion explicitly. But ok...
Status: RESOLVED → UNCONFIRMED
Resolution: DUPLICATE → ---
Comment 4•22 years ago
|
||
*** This bug has been marked as a duplicate of 13350 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago → 22 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•