[Webkit-unassigned] [Bug 14746] New: REGRESSION (r21430): Form state not saved for forms that submit via HTTPS even if they do not contain a password field

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 24 05:13:32 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14746

           Summary: REGRESSION (r21430): Form state not saved for forms that
                    submit via HTTPS even if they do not contain a password
                    field
           Product: WebKit
           Version: 522+ (nightly)
          Platform: All
               URL: https://svn.macosforge.org/projects/webkit/wiki/WikiStar
                    t?action=history
        OS/Version: All
            Status: NEW
          Keywords: Regression
          Severity: Normal
          Priority: P1
         Component: Page Loading
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mitz at webkit.org
                CC: beidson at apple.com


>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.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list