[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:41:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9c2486527d1d15c6fc6450682841da9151a510b8
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri May 9 00:15:54 2003 +0000

    	Background-position-x and y should be length|percentage.  Number
    	is not a valid option.  Need to remove this so that the quirk will
    	kick in that translates numbers to pixels.  Fixes an issue on
    	diveintomark's list.
    
            Reviewed by darin
    
            * khtml/css/cssparser.cpp:
            (CSSParser::parseValue):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4323 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 98e2855..ee35bde 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,15 @@
+2003-05-08  David Hyatt  <hyatt at apple.com>
+
+	Background-position-x and y should be length|percentage.  Number
+	is not a valid option.  Need to remove this so that the quirk will
+	kick in that translates numbers to pixels.  Fixes an issue on
+	diveintomark's list.
+	
+        Reviewed by darin
+
+        * khtml/css/cssparser.cpp:
+        (CSSParser::parseValue):
+
 2003-05-08  Darin Adler  <darin at apple.com>
 
         Reviewed by Dave.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 98e2855..ee35bde 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,15 @@
+2003-05-08  David Hyatt  <hyatt at apple.com>
+
+	Background-position-x and y should be length|percentage.  Number
+	is not a valid option.  Need to remove this so that the quirk will
+	kick in that translates numbers to pixels.  Fixes an issue on
+	diveintomark's list.
+	
+        Reviewed by darin
+
+        * khtml/css/cssparser.cpp:
+        (CSSParser::parseValue):
+
 2003-05-08  Darin Adler  <darin at apple.com>
 
         Reviewed by Dave.
diff --git a/WebCore/khtml/css/cssparser.cpp b/WebCore/khtml/css/cssparser.cpp
index 114ee68..f0ae1da 100644
--- a/WebCore/khtml/css/cssparser.cpp
+++ b/WebCore/khtml/css/cssparser.cpp
@@ -685,7 +685,7 @@ bool CSSParser::parseValue( int propId, bool important )
 
     case CSS_PROP_BACKGROUND_POSITION_X:
     case CSS_PROP_BACKGROUND_POSITION_Y:
-	valid_primitive = validUnit( value, FPercent|FNumber|FLength, strict&(!nonCSSHint) );
+	valid_primitive = validUnit( value, FPercent|FLength, strict&(!nonCSSHint) );
 	break;
 
     case CSS_PROP_BORDER_SPACING:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list