[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

checkbox checks forgotten upon BACK, at least for file:/// URLs



Upon BACK (w3m-view-previous-page), emacs-w3m forgets what boxes the
user has checked, whereas lynx, w3m, filefox all remember.

It happens with file:/// URLs, but not http:// URLs.

Test with this file:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd";>
<html>
<head>
 <title>Button test</title>
</head>
<body>
 <form action="http://www.example.com";>
 <p>
  A<input type="checkbox" name="z" value="a">;
  B<input type="checkbox" name="z" value="b">;
  C<input type="checkbox" name="z" value="c">;
 <input type="submit">
 </p>
 </form>
</body>
</html>