[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 07:17:25 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5af885b545351000171d681d51a478a097d96082
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 26 03:42:57 2002 +0000

            Reviewed by Darin.
    
    	- fixed 3133611 -- Java "ticker" applet renders badly when scrolling page
    
            * Plugins.subproj/WebBaseNetscapePluginView.m: (-[WebBaseNetscapePluginView viewHasMoved:]):
    	Call setWindow so we make a call to the plugin each time it moves, rather than just adjusting
    	the data structure we had passed to it earlier.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3187 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index f82887b..16f8fc8 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2002-12-25  Darin Adler  <darin at apple.com>
+
+        Reviewed by Darin.
+
+	- fixed 3133611 -- Java "ticker" applet renders badly when scrolling page
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m: (-[WebBaseNetscapePluginView viewHasMoved:]):
+	Call setWindow so we make a call to the plugin each time it moves, rather than just adjusting
+	the data structure we had passed to it earlier.
+
 2002-12-24  Darin Adler  <darin at apple.com>
 
         Reviewed by Richard and Don.
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index 17cd1e1..d7fd068 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -769,7 +769,9 @@ static WebBaseNetscapePluginView *currentPluginView = nil;
 
 -(void)viewHasMoved:(NSNotification *)notification
 {
-    [self setUpWindowAndPort];
+    if (isStarted) {
+        [self setWindow];
+    }
     [self resetTrackingRect];
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list