[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 07:01:29 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit eb003b81eb079d25319a39748b2ac091a9944959
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 15 22:35:10 2002 +0000

    	Fix for whitespace regressions that caused text overlapping
    	and text spilling.
    
            * khtml/rendering/bidi.cpp:
            (appendRunsForObject):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2701 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 576dec9..6902017 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-11-15  David Hyatt  <hyatt at apple.com>
 
+	Fix for whitespace regressions that caused text overlapping
+	and text spilling.
+	
+        * khtml/rendering/bidi.cpp:
+        (appendRunsForObject):
+
+2002-11-15  David Hyatt  <hyatt at apple.com>
+
 	Fix newlines getting stripped out of textareas by not making
 	rendertext objects for children of textareas.
 	
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 576dec9..6902017 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-11-15  David Hyatt  <hyatt at apple.com>
 
+	Fix for whitespace regressions that caused text overlapping
+	and text spilling.
+	
+        * khtml/rendering/bidi.cpp:
+        (appendRunsForObject):
+
+2002-11-15  David Hyatt  <hyatt at apple.com>
+
 	Fix newlines getting stripped out of textareas by not making
 	rendertext objects for children of textareas.
 	
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 576dec9..6902017 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-11-15  David Hyatt  <hyatt at apple.com>
 
+	Fix for whitespace regressions that caused text overlapping
+	and text spilling.
+	
+        * khtml/rendering/bidi.cpp:
+        (appendRunsForObject):
+
+2002-11-15  David Hyatt  <hyatt at apple.com>
+
 	Fix newlines getting stripped out of textareas by not making
 	rendertext objects for children of textareas.
 	
diff --git a/WebCore/khtml/rendering/bidi.cpp b/WebCore/khtml/rendering/bidi.cpp
index f5b257f..b476eec 100644
--- a/WebCore/khtml/rendering/bidi.cpp
+++ b/WebCore/khtml/rendering/bidi.cpp
@@ -251,6 +251,9 @@ inline QChar::Direction BidiIterator::direction() const
 
 static void appendRunsForObject(int start, int end, RenderObject* obj)
 {
+    if (start > end)
+        return;
+        
     BidiIterator* nextMidpoint = (smidpoints && smidpoints->count()) ? smidpoints->at(0) : 0;
     if (betweenMidpoints) {
         if (!(nextMidpoint && nextMidpoint->obj == obj))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list