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

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:48:17 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit d7854723fbe31660f5bf15bb819e1db228b63f8b
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jun 24 18:22:54 2004 +0000

            Darin made this change on my machine; I reviewed it.
    
            - fixed <rdar://problem/3698333> Find on page doesn't find a particular string
            with a newline in the source
    
            * khtml/misc/khtml_text_operations.cpp:
            (khtml::TextIterator::handleTextBox):
            Clear m_lastTextNodeEndedWithCollapsedSpace after taking it into account.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6912 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0cb68f6..aadb29d 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2004-06-24  John Sullivan  <sullivan at apple.com>
+
+        Darin made this change on my machine; I reviewed it.
+        
+        - fixed <rdar://problem/3698333> Find on page doesn't find a particular string 
+        with a newline in the source
+
+        * khtml/misc/khtml_text_operations.cpp:
+        (khtml::TextIterator::handleTextBox):
+        Clear m_lastTextNodeEndedWithCollapsedSpace after taking it into account.
+
 2004-06-23  Richard Williamson   <rjw at apple.com>
 
 	Implemented changes for latest npruntime.h.
diff --git a/WebCore/khtml/editing/visible_text.cpp b/WebCore/khtml/editing/visible_text.cpp
index 98f2e44..06954c9 100644
--- a/WebCore/khtml/editing/visible_text.cpp
+++ b/WebCore/khtml/editing/visible_text.cpp
@@ -378,6 +378,7 @@ void TextIterator::handleTextBox()
                 m_textCharacters = str.unicode() + runStart;
                 m_textLength = subrunEnd - runStart;
 
+                m_lastTextNodeEndedWithCollapsedSpace = false;
                 m_lastCharacter = str[subrunEnd - 1];
             }
 
diff --git a/WebCore/khtml/misc/khtml_text_operations.cpp b/WebCore/khtml/misc/khtml_text_operations.cpp
index 98f2e44..06954c9 100644
--- a/WebCore/khtml/misc/khtml_text_operations.cpp
+++ b/WebCore/khtml/misc/khtml_text_operations.cpp
@@ -378,6 +378,7 @@ void TextIterator::handleTextBox()
                 m_textCharacters = str.unicode() + runStart;
                 m_textLength = subrunEnd - runStart;
 
+                m_lastTextNodeEndedWithCollapsedSpace = false;
                 m_lastCharacter = str[subrunEnd - 1];
             }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list