Closed
Bug 4429
Opened 26 years ago
Closed 26 years ago
Continue button on this form doesn't give results
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: steve.beitzel, Assigned: karnaze)
References
()
Details
The URL results in a table of Realtors in the San Francisco area.
Since there are more than 10 and the script only displays ten
listings at a time, there's a button at the bottom of the table
for displaying the next 10 agents. With Navigator 4 or with IE 4,
clicking on this button will show another results page, with items
11 through 20. Gecko shows a results page with a next and previous
button, but with no results table.
Steps to reproduce:
1. Launch apprunner.exe
2. Go to the URL
3. Click on the button labeled "Next 10 Agents"
Build/System information:
Windows NT 4, service pack 3
Build 99032914, built with VC++ 6
... any chance this is another problem with URLs that end in .asp? I vaguely
remember other problems with submissions to .asp URLs...
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•26 years ago
|
||
The problem was an <input> as a child of a <table>. Here is the test case for
regression testing.
<FORM METHOD="GET" ACTION="http://search.yahoo.com/bin/search"
NAME="searchform">
<TABLE border=1>
<TR>
<td> <INPUT TYPE=HIDDEN NAME="zip2" VALUE = "">foo</td></tr>
</table>
<input type=submit name=submit>
</form>
seems fine to me now using the 1999042608 build. btw, good luck with the name
change over there at homeshark, and thanks for filing this!
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
•