Closed
Bug 723844
Opened 13 years ago
Closed 13 years ago
Calling a function called onsubmit() from onsubmit handler causes recursive lock-up
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 682793
People
(Reporter: craig, Unassigned)
Details
(Keywords: crash)
Attachments
(1 file)
345 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.0; rv:10.0) Gecko/20100101 Firefox/10.0
Build ID: 20120129021758
Steps to reproduce:
Call a local function called onsubmit() from a form's onsubmit handler.
Actual results:
Firefox locks up, triggering the onsubmit() event recursively.
Expected results:
Internet explorer and other browsers call the local function as expected without crashing.
Updated•13 years ago
|
Attachment #594085 -
Attachment mime type: text/plain → text/html
Comment 1•13 years ago
|
||
Unable to reproduce on Mozilla/5.0 (Windows NT 5.1; rv:13.0a1) Gecko/20120202 Firefox/13.0a1
Does the issue still occur if you start Firefox in Safe Mode? http://support.mozilla.com/en-US/kb/Safe+Mode
How about with a new, empty profile? http://support.mozilla.com/en-US/kb/Basic%20Troubleshooting#w_8-make-a-new-profile
Tim, but do you get the alert shown?
I do not, but I get this in error console, in FF13:
Timestamp: 7.2.2012 16:28:11
Error: too much recursion
Source File: https://bug723844.bugzilla.mozilla.org/attachment.cgi?id=594085
Line: 1
So the recursion is still there, just not a crash.
Component: Untriaged → HTML: Form Submission
Product: Firefox → Core
QA Contact: untriaged → form-submission
![]() |
||
Comment 3•13 years ago
|
||
The recursive behavior is the one the spec requires here. Furthermore, it's the one I see in Safari, Chrome, and Opera; I'm not sure what "other browsers" means in comment 0 given that....
The reason for the behavior is that in inline event handlers the element the handler is bound to is placed on the scope chain, so a bareword lookup first looks for properties on that element. So the testcase is equivalent to this one:
<form id="test" onsubmit="document.getElementById("test").onsubmit();">
since form elements do in fact have an "onsubmit" property.
So the behavior from comment 2 is correct.
The lockup should not be happening, unless you have Firebug installed or something. Craig, is that the case for you?
Reporter | ||
Comment 4•13 years ago
|
||
Hi,
I can confirm that in safe mode this does not happen and that i do run firebug so it is likely that it is trying to log the event or such.
Probably not-a-bug :-)
Comment 5•13 years ago
|
||
Status: UNCONFIRMED → RESOLVED
Closed: 13 years ago
Resolution: --- → INVALID
![]() |
||
Comment 6•13 years ago
|
||
Yeah, exactly. Firebug tries to report the infinite recursion exception, but we're out of stack space, so its attempt to do this throws an infinite recursion exception, and off we go.
Resolution: INVALID → DUPLICATE
Assignee | ||
Updated•6 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•