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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:25:25 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit bf847a67e967bf7496e7888bd2ac6656784511bc
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Feb 20 22:33:46 2003 +0000

            Reviewed by Darin Adler.
    
    	- fixed 3173276 - hang in kjs string at iteslj.org page
    
            * khtml/html/htmltokenizer.cpp:
            (HTMLTokenizer::addPending): Leave whitespace unmolested inside
    	<script>, so that literal tabs in strings come through as tabs,
    	not spaces.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3682 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index b40e953..b91b6a9 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,14 @@
+2003-02-20  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin Adler.
+
+	- fixed 3173276 - hang in kjs string at iteslj.org page
+
+        * khtml/html/htmltokenizer.cpp:
+        (HTMLTokenizer::addPending): Leave whitespace unmolested inside
+	<script>, so that literal tabs in strings come through as tabs,
+	not spaces.
+
 2003-02-20  Darin Adler  <darin at apple.com>
 
         Reviewed by Trey.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index b40e953..b91b6a9 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2003-02-20  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin Adler.
+
+	- fixed 3173276 - hang in kjs string at iteslj.org page
+
+        * khtml/html/htmltokenizer.cpp:
+        (HTMLTokenizer::addPending): Leave whitespace unmolested inside
+	<script>, so that literal tabs in strings come through as tabs,
+	not spaces.
+
 2003-02-20  Darin Adler  <darin at apple.com>
 
         Reviewed by Trey.
diff --git a/WebCore/khtml/html/htmltokenizer.cpp b/WebCore/khtml/html/htmltokenizer.cpp
index fa36cc4..5fbf376 100644
--- a/WebCore/khtml/html/htmltokenizer.cpp
+++ b/WebCore/khtml/html/htmltokenizer.cpp
@@ -1324,7 +1324,7 @@ void HTMLTokenizer::addPending()
     {
         *dest++ = ' ';
     }
-    else if ( textarea )
+    else if ( textarea || script )
     {
         switch(pending) {
         case LFPending:  *dest++ = '\n'; prePos = 0; break;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list