[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 08:07:59 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 3229c2caa5e10f48e077a3e58d425e68cd39cca8
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 31 01:41:40 2003 +0000

    	Fix for 3469206, images didn't paint outlines any more.  They were bailing early because I forgot to
    	add a check for my new PaintAction.
    
            Reviewed by darin
    
            * khtml/rendering/render_replaced.cpp:
            (RenderReplaced::paint):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5336 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0849100..61a37c4 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,15 @@
 2003-10-30  David Hyatt  <hyatt at apple.com>
 
+	Fix for 3469206, images didn't paint outlines any more.  They were bailing early because I forgot to
+	add a check for my new PaintAction.
+	
+        Reviewed by darin
+
+        * khtml/rendering/render_replaced.cpp:
+        (RenderReplaced::paint):
+
+2003-10-30  David Hyatt  <hyatt at apple.com>
+
 	Fixes for 3469057, outlines not drawn on aintitcool.com and also for 3469178, objects with width/height of 0
 	incorrectly excluded from tabbing.
 	
diff --git a/WebCore/khtml/rendering/render_replaced.cpp b/WebCore/khtml/rendering/render_replaced.cpp
index b7a8857..f5d3bcb 100644
--- a/WebCore/khtml/rendering/render_replaced.cpp
+++ b/WebCore/khtml/rendering/render_replaced.cpp
@@ -56,7 +56,7 @@ RenderReplaced::RenderReplaced(DOM::NodeImpl* node)
 void RenderReplaced::paint(QPainter *p, int _x, int _y, int _w, int _h,
                            int _tx, int _ty, PaintAction paintAction)
 {
-    if (paintAction != PaintActionForeground)
+    if (paintAction != PaintActionForeground && paintAction != PaintActionOutline)
         return;
         
     // if we're invisible or haven't received a layout yet, then just bail.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list