[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
darin
darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:48:20 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 9f877ff97c228d267c6067af75de8537c5431a58
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Oct 9 15:09:41 2002 +0000
* WebCoreSupport.subproj/WebImageRenderer.m:
(-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
Fix positioning of progressively loading images that are flipped.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2289 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6c1ffb3..80a23a5 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,11 @@
2002-10-09 Darin Adler <darin at apple.com>
+ * WebCoreSupport.subproj/WebImageRenderer.m:
+ (-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
+ Fix positioning of progressively loading images that are flipped.
+
+2002-10-09 Darin Adler <darin at apple.com>
+
- fixed 3069764 -- REGRESSION: Plug-ins sometimes don't respond to
update events, causes disappearing
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 6c1ffb3..80a23a5 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,11 @@
2002-10-09 Darin Adler <darin at apple.com>
+ * WebCoreSupport.subproj/WebImageRenderer.m:
+ (-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
+ Fix positioning of progressively loading images that are flipped.
+
+2002-10-09 Darin Adler <darin at apple.com>
+
- fixed 3069764 -- REGRESSION: Plug-ins sometimes don't respond to
update events, causes disappearing
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index 0161f43..74f9f06 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -171,7 +171,9 @@ static NSMutableArray *activeImageRenderers;
ir.origin.y += ir.size.height - clippedDestinationHeight;
}
ir.size.height = clippedDestinationHeight;
- fr.origin.y += fr.size.height - clippedSourceHeight;
+ if (![self isFlipped]) {
+ fr.origin.y += fr.size.height - clippedSourceHeight;
+ }
fr.size.height = clippedSourceHeight;
}
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list