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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:46:26 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 44f5fb254f4999d43ae748bd6afebf7d552c2a57
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 8 20:18:46 2003 +0000

            * WebCore.pbproj/project.pbxproj: Xcode-ified
            * khtml/html/htmltokenizer.cpp:
            (HTMLTokenizer::parseTag): fulfilled promise to Darin that I would add a comment about using tolower() instead of | 0x20
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4603 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 31b4d51..a3152f4 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,11 @@
 2003-07-08  Chris Blumenberg  <cblu at apple.com>
 
+        * WebCore.pbproj/project.pbxproj: Xcode-ified
+        * khtml/html/htmltokenizer.cpp:
+        (HTMLTokenizer::parseTag): fulfilled promise to Darin that I would add a comment about using tolower() instead of | 0x20
+
+2003-07-08  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: <rdar://problem/3272398>: Safari strips/modifies underscores in EMBED tags
 
         Reviewed by darin.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 31b4d51..a3152f4 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,11 @@
 2003-07-08  Chris Blumenberg  <cblu at apple.com>
 
+        * WebCore.pbproj/project.pbxproj: Xcode-ified
+        * khtml/html/htmltokenizer.cpp:
+        (HTMLTokenizer::parseTag): fulfilled promise to Darin that I would add a comment about using tolower() instead of | 0x20
+
+2003-07-08  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: <rdar://problem/3272398>: Safari strips/modifies underscores in EMBED tags
 
         Reviewed by darin.
diff --git a/WebCore/WebCore.pbproj/project.pbxproj b/WebCore/WebCore.pbproj/project.pbxproj
index 6337e95..1f360c1 100644
--- a/WebCore/WebCore.pbproj/project.pbxproj
+++ b/WebCore/WebCore.pbproj/project.pbxproj
@@ -1603,16 +1603,20 @@
 //BC3
 //BC4
 		BC32C2EC048BF95C00A8000B = {
+			expectedFileType = sourcecode.cpp.cpp;
 			fileEncoding = 30;
 			isa = PBXFileReference;
 			path = render_flexbox.cpp;
 			refType = 4;
+			sourceTree = "<group>";
 		};
 		BC32C2ED048BF95C00A8000B = {
+			expectedFileType = sourcecode.c.h;
 			fileEncoding = 30;
 			isa = PBXFileReference;
 			path = render_flexbox.h;
 			refType = 4;
+			sourceTree = "<group>";
 		};
 		BC32C2EE048BF95C00A8000B = {
 			fileRef = BC32C2EC048BF95C00A8000B;
diff --git a/WebCore/khtml/html/htmltokenizer.cpp b/WebCore/khtml/html/htmltokenizer.cpp
index 59aa3ec..82928d8 100644
--- a/WebCore/khtml/html/htmltokenizer.cpp
+++ b/WebCore/khtml/html/htmltokenizer.cpp
@@ -911,6 +911,9 @@ void HTMLTokenizer::parseTag(DOMStringIt &src)
                     finish = true;
                     break;
                 }
+                // Use tolower() instead of | 0x20 to lowercase the char because there is no 
+                // performance gain in using | 0x20 since tolower() is optimized and 
+                // | 0x20 turns characters such as '_' into junk.
                 cBuffer[cBufferPos++] = tolower(curchar);
                 ++src;
             }
@@ -1024,6 +1027,9 @@ void HTMLTokenizer::parseTag(DOMStringIt &src)
                         break;
                     }
                 }
+                // Use tolower() instead of | 0x20 to lowercase the char because there is no 
+                // performance gain in using | 0x20 since tolower() is optimized and 
+                // | 0x20 turns characters such as '_' into junk.
                 cBuffer[cBufferPos++] = tolower(curchar);
                 ++src;
             }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list