Title: [203098] trunk/Source/WebCore
Revision
203098
Author
[email protected]
Date
2016-07-11 16:44:48 -0700 (Mon, 11 Jul 2016)

Log Message

<rdar://problem/27285599> REGRESSION: Assertion under CertificateInfo::trust() every time I focus a text field

Reviewed by Sam Weinig.

The assertion added to CertificateInfo::trust() in r203040 is wrong, and is triggered when
focusing a form field via calls to -[WKWebProcessPlugInFrame _serverTrust], so remove it.

* platform/network/cf/CertificateInfo.h:
(WebCore::CertificateInfo::trust):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (203097 => 203098)


--- trunk/Source/WebCore/ChangeLog	2016-07-11 23:44:44 UTC (rev 203097)
+++ trunk/Source/WebCore/ChangeLog	2016-07-11 23:44:48 UTC (rev 203098)
@@ -1,5 +1,17 @@
 2016-07-11  Simon Fraser  <[email protected]>
 
+        <rdar://problem/27285599> REGRESSION: Assertion under CertificateInfo::trust() every time I focus a text field
+
+        Reviewed by Sam Weinig.
+
+        The assertion added to CertificateInfo::trust() in r203040 is wrong, and is triggered when
+        focusing a form field via calls to -[WKWebProcessPlugInFrame _serverTrust], so remove it.
+
+        * platform/network/cf/CertificateInfo.h:
+        (WebCore::CertificateInfo::trust):
+
+2016-07-11  Simon Fraser  <[email protected]>
+
         Deleting in a text input inside an iframe causes the page to scroll incorrectly
         https://bugs.webkit.org/show_bug.cgi?id=159654
         rdar://problem/26805722

Modified: trunk/Source/WebCore/platform/network/cf/CertificateInfo.h (203097 => 203098)


--- trunk/Source/WebCore/platform/network/cf/CertificateInfo.h	2016-07-11 23:44:44 UTC (rev 203097)
+++ trunk/Source/WebCore/platform/network/cf/CertificateInfo.h	2016-07-11 23:44:48 UTC (rev 203098)
@@ -53,7 +53,7 @@
     {
     }
  
-    SecTrustRef trust() const { ASSERT(m_trust); return m_trust.get(); }
+    SecTrustRef trust() const { return m_trust.get(); }
 #endif
 
     CertificateInfo(RetainPtr<CFArrayRef>&& certificateChain)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to