RESOLVED FIXED 14746
REGRESSION (r21430): Form state not saved for forms that submit via HTTPS even if they do not contain a password field
https://bugs.webkit.org/show_bug.cgi?id=14746
Summary REGRESSION (r21430): Form state not saved for forms that submit via HTTPS eve...
mitz
Reported Tuesday, July 24, 2007 1:13:32 PM UTC
From <http://trac.webkit.org/projects/webkit/changeset/21430>: - // Do not save doc state if the page has a password field and a form that would be submitted via https. + // Do not save doc state if the page has a form that would be submitted via https. Document* document = m_frame->document(); ASSERT(document); - if (document->hasPasswordField() && document->hasSecureForm()) - return; + if (document->hasSecureForm()) + return; The result is that pages like the one in the URL do not save form state. I do not understand this expansion of the class of documents that do not save state.
Attachments
Brady Eidson
Comment 1 Thursday, August 9, 2007 5:47:48 PM UTC
I have a very strong recollection that when I was writing this patch, we discovered that the fact that we *did* save form state for HTTPS was a regression from Safari 2, as many high-security commercial sites refuse to work with your browser if you remember form state at all. I might be misremembering this and confusing it with a different issue, however, so I'm exploring this...
Brady Eidson
Comment 2 Thursday, August 9, 2007 6:02:47 PM UTC
I used https://addons.mozilla.org/en-US/firefox/ to test this. There's a search field there. Enter text in the search field and search. Then go back. In Safari 2 the text is remembered. In ToT, it is not. *sigh*
David Kilzer (:ddkilzer)
Comment 3 Friday, August 10, 2007 2:14:27 PM UTC
mitz
Comment 4 Tuesday, August 14, 2007 6:09:50 AM UTC
mitz
Comment 5 Tuesday, August 14, 2007 9:26:03 PM UTC
Note You need to log in before you can comment on or make changes to this bug.