[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

hamaji at chromium.org hamaji at chromium.org
Wed Dec 22 12:08:48 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e2147f66a99e516985f0c251c0f85219ae5231cd
Author: hamaji at chromium.org <hamaji at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 16 11:57:17 2010 +0000

    2010-08-16  Yuta Kitamura  <yutak at chromium.org>
    
            Reviewed by Shinichiro Hamaji.
    
            Attempt to fix Chromium's test_shell_tests.
    
            Port Chromium's WebEntities to HTMLEntityTable
            https://bugs.webkit.org/show_bug.cgi?id=44036
    
            * src/WebEntities.cpp:
            (WebKit::):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65411 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index a3aa749..fe4bd44 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-16  Yuta Kitamura  <yutak at chromium.org>
+
+        Reviewed by Shinichiro Hamaji.
+
+        Attempt to fix Chromium's test_shell_tests.
+
+        Port Chromium's WebEntities to HTMLEntityTable
+        https://bugs.webkit.org/show_bug.cgi?id=44036
+
+        * src/WebEntities.cpp:
+        (WebKit::):
+
 2010-08-15  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebKit/chromium/src/WebEntities.cpp b/WebKit/chromium/src/WebEntities.cpp
index d845b71..2e05d52 100644
--- a/WebKit/chromium/src/WebEntities.cpp
+++ b/WebKit/chromium/src/WebEntities.cpp
@@ -61,7 +61,7 @@ void populateMapFromHTMLEntityTable(WTF::HashMap<int, WTF::String>& map)
     ASSERT(map.isEmpty());
     const HTMLEntityTableEntry* entry = HTMLEntityTable::firstEntry();
     const HTMLEntityTableEntry* end = HTMLEntityTable::lastEntry() + 1;
-    while (entry != end) {
+    for (; entry != end; ++entry) {
         String entity = entry->entity;
         int value = entry->value;
         ASSERT(value && !entity.isEmpty());

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list