Closed
Bug 115156
Opened 23 years ago
Closed 23 years ago
A Javascript elect form for navigation on this page causes Mozilla to hang in Linux
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 112241
People
(Reporter: chris, Assigned: rogerl)
References
()
Details
There is a Javascript navigation form on this page:
http://www.marxists.org/
that is written from this file:
http://www.marxists.org/menu.js
that, when used, causes my version of mozilla to totally lock up X to the extent
that I have to ssh from another box in order to do a killall -9 mozilla-bin.
I'm running: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120
![]() |
||
Comment 1•23 years ago
|
||
<select name="select1" onChange="selectaplace(this.form)" size=1>
function selectaplace(form) {
/* some stuff */
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
}
So the onchange event changes the select, which fires the onchange event
recursively.
Duplicate of "Mozilla locks up when select box is used (recursive onchange)"
*** This bug has been marked as a duplicate of 112241 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•