Bug 115282 - [WK2] Regression tests can't load HTTPS pages with NetworkProcess due to self-signed certificate
Summary: [WK2] Regression tests can't load HTTPS pages with NetworkProcess due to self...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac Unspecified
: P2 Normal
Assignee: mitz
URL:
Keywords:
Depends on: 135327
Blocks: 135472
  Show dependency treegraph
 
Reported: 2013-04-26 15:35 PDT by Alexey Proskuryakov
Modified: 2014-07-31 14:28 PDT (History)
5 users (show)

See Also:


Attachments
Make WebKitTestRunner trust localhost (6.46 KB, patch)
2014-07-30 18:38 PDT, mitz
sam: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alexey Proskuryakov 2013-04-26 15:35:02 PDT
We have solutions for self-signed certificates when loading is in WebProcess (e.g. on Mac, we call +[NSURLRequest setAllowsAnyHTTPSCertificate:forHost:]).

We need a solution for NetworkProcess too.
Comment 1 mitz 2014-07-30 18:38:12 PDT
Created attachment 235794 [details]
Make WebKitTestRunner trust localhost
Comment 2 Alexey Proskuryakov 2014-07-31 09:26:29 PDT
Comment on attachment 235794 [details]
Make WebKitTestRunner trust localhost

View in context: https://bugs.webkit.org/attachment.cgi?id=235794&action=review

> Tools/WebKitTestRunner/TestController.cpp:1263
> +        // Any non-empty credential signals tp accept the server trust. Since the cross-platform API

Typo: "tp".
Comment 3 mitz 2014-07-31 09:45:59 PDT
(In reply to comment #2)
> (From update of attachment 235794 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=235794&action=review
> 
> > Tools/WebKitTestRunner/TestController.cpp:1263
> > +        // Any non-empty credential signals tp accept the server trust. Since the cross-platform API
> 
> Typo: "tp".

Corrected!

Fixed in <http://trac.webkit.org/r171859>.