Closed
Bug 469318
Opened 17 years ago
Closed 17 years ago
view page source issues a GET command on an already POST-ed form
Categories
(Toolkit :: View Source, defect)
Toolkit
View Source
Tracking
()
RESOLVED
DUPLICATE
of bug 469302
People
(Reporter: stanley.appel, Unassigned)
References
()
Details
(Keywords: regression)
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b3pre) Gecko/20081211 Shiretoko/3.1b3pre
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b3pre) Gecko/20081211 Shiretoko/3.1b3pre
A submit on a page with a form firefox does a POST command on the server.
But when i do a 'view page source' on the result page i get do not get the returned data of the returned page viewed. If i look at the server log it shows that firefox does an extra GET command to get the page.
Also found the regression range of the problem. The nightly build on 20081104 it still works ok, but 20081105 has the problem described above.
Reproducible: Always
Steps to Reproduce:
1. go to http://www.stappel.com/test.php
2. press submit
3. the pages says: Request type: POST
4. right click on page and select: view page source.
5. the source code says: Request type: GET
this also shown the the apache logs.
Actual Results:
Request type: GET
Expected Results:
Request type: POST
apache logfile:
OK:
160.110.104.207 - - [12/Dec/2008:11:56:19 +0100] "POST /vsn/volare/prog_companyview.php HTTP/1.1" 200 6425 "http://{HOST}/vsn/volare/prog_companysearch.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b2pre) Gecko/20081104 Minefield/3.1b2pre"
FAIL:
160.110.104.207 - - [12/Dec/2008:11:58:40 +0100] "POST /vsn/volare/prog_companyview.php HTTP/1.1" 200 6425 "http://{HOST}/vsn/volare/prog_companysearch.php" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b2pre) Gecko/20081105 Minefield/3.1b2pre"
160.110.104.207 - - [12/Dec/2008:11:59:43 +0100] "GET /vsn/volare/prog_companyview.php HTTP/1.1" 200 2287 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b2pre) Gecko/20081105 Minefield/3.1b2pre"
Updated•17 years ago
|
Component: General → View Source
Product: Firefox → Toolkit
QA Contact: general → view.source
the source of the test1.php file is simple:
<html>
<head>
<title>firefox test</title>
</head>
<body>
<?php
if ( isset( $_SERVER['REQUEST_METHOD'] ) )
{
echo 'Request type: ' . $_SERVER['REQUEST_METHOD'];
}
?>
</body>
</html>
Comment 2•17 years ago
|
||
Confirmed with
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.2a1pre) Gecko/20081212 Minefield/3.2a1pre
OS: Windows XP → All
Hardware: PC → All
Version: unspecified → Trunk
bug #469302 shows the same problem.
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → DUPLICATE
Updated•17 years ago
|
Flags: wanted1.9.1?
You need to log in
before you can comment on or make changes to this bug.
Description
•