[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:07:10 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 953c59885fd7263bd05291285f876321a68cea48
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Nov 23 02:50:05 2002 +0000

    	Fixed: 3104693 - QT movie doesn't show video while still downloading
    
    	The initial size of plug-in should be 0,0 instead of 1,1 or else we don't get the layout
    
            * Plugins.subproj/WebNetscapePluginDocumentView.m:
            (-[WebNetscapePluginDocumentView initWithFrame:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2837 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 939765c..7626daf 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,14 @@
 2002-11-22  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: 3104693 - QT movie doesn't show video while still downloading
+
+	The initial size of plug-in should be 0,0 instead of 1,1 or else we don't get the layout
+
+        * Plugins.subproj/WebNetscapePluginDocumentView.m:
+        (-[WebNetscapePluginDocumentView initWithFrame:]):
+
+2002-11-22  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 3078737 - Crash in -[WebHistoryItem dealloc] after closing last window
 
         * Misc.subproj/WebIconDatabase.m:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 939765c..7626daf 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,14 @@
 2002-11-22  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: 3104693 - QT movie doesn't show video while still downloading
+
+	The initial size of plug-in should be 0,0 instead of 1,1 or else we don't get the layout
+
+        * Plugins.subproj/WebNetscapePluginDocumentView.m:
+        (-[WebNetscapePluginDocumentView initWithFrame:]):
+
+2002-11-22  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 3078737 - Crash in -[WebHistoryItem dealloc] after closing last window
 
         * Misc.subproj/WebIconDatabase.m:
diff --git a/WebKit/Plugins.subproj/WebNetscapePluginDocumentView.m b/WebKit/Plugins.subproj/WebNetscapePluginDocumentView.m
index f10da7f..313b564 100644
--- a/WebKit/Plugins.subproj/WebNetscapePluginDocumentView.m
+++ b/WebKit/Plugins.subproj/WebNetscapePluginDocumentView.m
@@ -24,7 +24,7 @@
 {
     [super initWithFrame:frame];
 
-    [self setFrame:NSMakeRect(0, 0, 1, 1)];
+    [self setFrame:NSZeroRect];
 
     [self setMode:NP_FULL];
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list