Changeset 203098 in webkit
- Timestamp:
- Jul 11, 2016, 4:44:48 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r203097 r203098 1 2016-07-11 Simon Fraser <simon.fraser@apple.com> 2 3 <rdar://problem/27285599> REGRESSION: Assertion under CertificateInfo::trust() every time I focus a text field 4 5 Reviewed by Sam Weinig. 6 7 The assertion added to CertificateInfo::trust() in r203040 is wrong, and is triggered when 8 focusing a form field via calls to -[WKWebProcessPlugInFrame _serverTrust], so remove it. 9 10 * platform/network/cf/CertificateInfo.h: 11 (WebCore::CertificateInfo::trust): 12 1 13 2016-07-11 Simon Fraser <simon.fraser@apple.com> 2 14 -
trunk/Source/WebCore/platform/network/cf/CertificateInfo.h
r203040 r203098 54 54 } 55 55 56 SecTrustRef trust() const { ASSERT(m_trust);return m_trust.get(); }56 SecTrustRef trust() const { return m_trust.get(); } 57 57 #endif 58 58
Note:
See TracChangeset
for help on using the changeset viewer.