Reviewed by Maciej.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=9452
Assertion failure in -[WebFramePrivate setProvisionalDataSource:]
* WebView/WebFrame.m:
(-[WebFrame _checkLoadCompleteForThisFrame]): Avoid re-entering the delegate's
-[webView:didFailProvisionalLoadWithError:forFrame].
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14910
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-06-19 Mitz Pettel <opendarwin.org@mitzpettel.com>
+
+ Reviewed by Maciej.
+
+ - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=9452
+ Assertion failure in -[WebFramePrivate setProvisionalDataSource:]
+
+ * WebView/WebFrame.m:
+ (-[WebFrame _checkLoadCompleteForThisFrame]): Avoid re-entering the delegate's
+ -[webView:didFailProvisionalLoadWithError:forFrame].
+
2006-06-18 Mitz Pettel <opendarwin.org@mitzpettel.com>
Reviewed by xenon.
switch ([self _state]) {
case WebFrameStateProvisional:
{
+ if (_private->delegateIsHandlingProvisionalLoadError)
+ return;
+
WebDataSource *pd = [self provisionalDataSource];
LOG(Loading, "%@: checking complete in WebFrameStateProvisional", [self name]);