[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
hyatt
hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:02:06 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit bb86b9990725a410349771e7afc96323742e76a7
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Nov 18 02:02:49 2002 +0000
The needsdisplay is necessary even for HTML documents.
I over-optimized here. Fixes the directory.apple.com
regression and the santa clara library regression.
* WebView.subproj/WebFramePrivate.m:
(-[WebFrame _isLoadComplete]):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2721 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index f52ed2b..52f9322 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-11-17 David Hyatt <hyatt at apple.com>
+
+ The needsdisplay is necessary even for HTML documents.
+ I over-optimized here. Fixes the directory.apple.com
+ regression and the santa clara library regression.
+
+ * WebView.subproj/WebFramePrivate.m:
+ (-[WebFrame _isLoadComplete]):
+
2002-11-17 Darin Adler <darin at apple.com>
- update for change to WebCore API so it never uses NSURL
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index f52ed2b..52f9322 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-11-17 David Hyatt <hyatt at apple.com>
+
+ The needsdisplay is necessary even for HTML documents.
+ I over-optimized here. Fixes the directory.apple.com
+ regression and the santa clara library regression.
+
+ * WebView.subproj/WebFramePrivate.m:
+ (-[WebFrame _isLoadComplete]):
+
2002-11-17 Darin Adler <darin at apple.com>
- update for change to WebCore API so it never uses NSURL
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index ca50744..ee17286 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -632,8 +632,8 @@ static const char * const stateNames[] = {
if (!([[self webView] isDocumentHTML])) {
[thisDocumentView setNeedsLayout:YES];
[thisDocumentView layout];
- [thisDocumentView setNeedsDisplay:YES];
}
+ [thisDocumentView setNeedsDisplay:YES];
// If the user had a scroll point scroll to it. This will override
// the anchor point. After much discussion it was decided by folks
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list