[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 07:37:20 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e3f51da5d606632142613e0ec47fc443dda2440d
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 16 00:04:35 2003 +0000

    	Fix 3227983 and 3229592, both the same bug involving a movable type
    	template:
    
    	letter-spacing: .none;
    
    	Fix is to make error-handling of exprs more generic.
    
            Reviewed by darin
    
            * khtml/css/parser.y:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4114 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index e9b09b4..42bd8e1 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,16 @@
+2003-04-15  David Hyatt  <hyatt at apple.com>
+
+	Fix 3227983 and 3229592, both the same bug involving a movable type
+	template:
+
+	letter-spacing: .none;
+
+	Fix is to make error-handling of exprs more generic.
+	
+        Reviewed by darin
+
+        * khtml/css/parser.y:
+
 2003-04-15  Darin Adler  <darin at apple.com>
 
         Reviewed by Ken.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index e9b09b4..42bd8e1 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,16 @@
+2003-04-15  David Hyatt  <hyatt at apple.com>
+
+	Fix 3227983 and 3229592, both the same bug involving a movable type
+	template:
+
+	letter-spacing: .none;
+
+	Fix is to make error-handling of exprs more generic.
+	
+        Reviewed by darin
+
+        * khtml/css/parser.y:
+
 2003-04-15  Darin Adler  <darin at apple.com>
 
         Reviewed by Ken.
diff --git a/WebCore/khtml/css/parser.y b/WebCore/khtml/css/parser.y
index fb7050e..70127a4 100644
--- a/WebCore/khtml/css/parser.y
+++ b/WebCore/khtml/css/parser.y
@@ -828,7 +828,7 @@ expr:
             $$->addValue( $3 );
         }
     }
-    | expr error {
+    | error {
         delete $1;
         $$ = 0;
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list