[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:00:21 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9953125e5d15533924534e8b9443c8e84359e04c
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 9 22:20:53 2003 +0000

    	Stop printing extra spaces before list items.  Fixes ordered lists with list-style-position: inside.
    
            Reviewed by mjs
    
            * khtml/rendering/render_list.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5160 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6514e60..d182ba3 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2003-10-09  David Hyatt  <hyatt at apple.com>
 
+	Stop printing extra spaces before list items.  Fixes ordered lists with list-style-position: inside.
+	
+        Reviewed by mjs
+
+        * khtml/rendering/render_list.cpp:
+
+2003-10-09  David Hyatt  <hyatt at apple.com>
+
 	Make definition of kMin and kMax match the KHTML trunk.  Someone still needs to eliminate uses of QMIN
 	and QMAX from the code.
 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6514e60..d182ba3 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2003-10-09  David Hyatt  <hyatt at apple.com>
 
+	Stop printing extra spaces before list items.  Fixes ordered lists with list-style-position: inside.
+	
+        Reviewed by mjs
+
+        * khtml/rendering/render_list.cpp:
+
+2003-10-09  David Hyatt  <hyatt at apple.com>
+
 	Make definition of kMin and kMax match the KHTML trunk.  Someone still needs to eliminate uses of QMIN
 	and QMAX from the code.
 
diff --git a/WebCore/khtml/rendering/render_list.cpp b/WebCore/khtml/rendering/render_list.cpp
index 1f59192..0bfe74c 100644
--- a/WebCore/khtml/rendering/render_list.cpp
+++ b/WebCore/khtml/rendering/render_list.cpp
@@ -576,7 +576,7 @@ void RenderListMarker::calcMinMaxWidth()
     case DECIMAL_LEADING_ZERO:
         // ### unsupported, we use decimal instead
     case LDECIMAL:
-        m_item.sprintf( "%2ld", m_value );
+        m_item.sprintf( "%ld", m_value );
         break;
     case LOWER_ROMAN:
         m_item = toRoman( m_value, false );

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list