>>> Is this an HTTP or HTTPS page?

---------- It is a HTTP request.

>>> Are you ending up hitting bfcache on the back navigation?

--------- If a page is retrieved from cache, are all the form data
saved to the page lost? I tried the same test case on Firefox 3.5.7
and in it, the form data are retrieved when I hit "back" button


>>> What gecko version?

-------- I am using XULRunner 1.9.1


>>>> What scripts does the page run?

It's a simple PERL script


#!C:/strawberry/perl/bin/perl.exe
use CGI qw(:standard);

my $cgi = new CGI;

print "Content-type:text/html\n\n";


@params = $cgi->param;
foreach (@params) {
print "$_ -> ", $cgi->param($_);
print "<br>\n";
}




_______________________________________________
dev-embedding mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-embedding

Reply via email to