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

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:49:44 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 17626dcbe1cd36b20785f07873a59a1c2a627b38
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 12 22:29:20 2004 +0000

            Reviewed by Hyatt
    
            * khtml/xml/dom_position.cpp:
            (DOM::Position::inRenderedContent): I broke selection drawing with my last patch. This
            function is now used in selection drawing, and it was making an unneeded check to see
            that content was editable to answer whether or not is was rendered. Bad. Fixed.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@7007 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6d11da2..a1c2ae6 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2004-07-12  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Hyatt
+
+        * khtml/xml/dom_position.cpp:
+        (DOM::Position::inRenderedContent): I broke selection drawing with my last patch. This 
+        function is now used in selection drawing, and it was making an unneeded check to see
+        that content was editable to answer whether or not is was rendered. Bad. Fixed.
+
 2004-07-12  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3621138, crash on hrweb.apple.com.  Make sure that in the case where objects get pulled up from merging
diff --git a/WebCore/khtml/xml/dom_position.cpp b/WebCore/khtml/xml/dom_position.cpp
index 0b6fe0d..0a6a66d 100644
--- a/WebCore/khtml/xml/dom_position.cpp
+++ b/WebCore/khtml/xml/dom_position.cpp
@@ -620,7 +620,7 @@ bool Position::inRenderedContent() const
         return false;
         
     RenderObject *renderer = node()->renderer();
-    if (!renderer || !renderer->isEditable())
+    if (!renderer)
         return false;
     
     if (renderer->style()->visibility() != khtml::VISIBLE)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list