Closed
Bug 10116
Opened 26 years ago
Closed 26 years ago
Javascript not working properly
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
VERIFIED
WORKSFORME
M15
People
(Reporter: rex, Assigned: pollmann)
Details
(Whiteboard: [TESTCASE] klein_sh@inter.net.il)
Attachments
(2 files)
The form that I have copied below should set the command hidden variable before submitting.
This works under both IE and NS 4.6
The value of command that is reported by M8 is blank.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML><HEAD><TITLE>Articles List</TITLE>
</HEAD><BODY BGCOLOR="e0d0d0"><font face=arial,helvetica size=+1>Articles on File</font>
<p>
<form name=articleform method=POST action="command.cgi">
<table>
<tr><td><input type=radio name=ID value="2" CHECKED></td>
<td>ECNet Channel Partner</td>
</tr><tr><td><input type=radio name=ID value="4" ></td>
<td>Staff News</td>
</tr><tr><td><input type=radio name=ID value="6" ></td>
<td>Dynamic Publishing Module</td>
</tr><tr><td><input type=radio name=ID value="8" ></td>
<td>Test</td>
</tr></table>
<p>
<input type=hidden name=command>
<input type=hidden name=caller value="listArticles.cgi">
<input type=hidden name=mode value="articles">
<input type=submit value="New" onClick='document.articleform.command.value="new"'>
<input type=submit value="Edit" onClick='document.articleform.command.value="edit"'>
<input type=submit value="Delete" onClick='document.articleform.command.value="delete"'>
</form>
</BODY>
</HTML>
Updated•26 years ago
|
Assignee: karnaze → kmcclusk
Comment 1•26 years ago
|
||
Kevin, please reassign to EricP, if appropriate.
Comment 2•26 years ago
|
||
Eric, sounds like a form element DOM issue. Re-assigning to you
Assignee: kmcclusk → pollmann
Updated•26 years ago
|
Whiteboard: [TESTCASE] klein_sh@inter.net.il
Comment 3•26 years ago
|
||
Assignee | ||
Comment 4•26 years ago
|
||
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Comment 5•26 years ago
|
||
I just tried this with today's build and it worked as expected. Posting has
been recently fixed, so this could have been a result of that bug?
Using the attached test case with a build from August 15, 1999, I get the same
results (well, the user agent string is different :) as with Communicator 4.7.
So, I suppose this is working OK now. Marking verified.
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
•