[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 08:13:22 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 36f7ff01e726e62ec6d8e6e984ce389bce57c4c2
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 18 04:15:14 2003 +0000

    	Merged from khtml:
    
    	-fixed 3487324 -  CSS url values should be wrapped in "url()" for cssText purposes
    
        2003-11-07  Dirk Mueller  <mueller at kde.org>
    
    	* css/css_valueimpl.cpp (cssText): wrap uri's into url().
    	Stephan Kulow noted that other browsers do that.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5563 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 4294161..4c3276e 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,15 @@
+2003-11-17  Maciej Stachowiak  <mjs at apple.com>
+
+	Merged from khtml:
+	
+	-fixed 3487324 -  CSS url values should be wrapped in "url()" for cssText purposes
+	
+    2003-11-07  Dirk Mueller  <mueller at kde.org>
+	 
+	* css/css_valueimpl.cpp (cssText): wrap uri's into url(). 
+	Stephan Kulow noted that other browsers do that.
+	
+
 2003-11-17  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3472998, stop a crash on an insanely malformed page.  I had to change the concept of 
diff --git a/WebCore/khtml/css/css_valueimpl.cpp b/WebCore/khtml/css/css_valueimpl.cpp
index 4f0ebc2..92eb23a 100644
--- a/WebCore/khtml/css/css_valueimpl.cpp
+++ b/WebCore/khtml/css/css_valueimpl.cpp
@@ -746,7 +746,9 @@ DOM::DOMString CSSPrimitiveValueImpl::cssText() const
 	    // ###
 	    break;
 	case CSSPrimitiveValue::CSS_URI:
-	    text = DOMString( m_value.string );
+            text  = "url(";
+	    text += DOMString( m_value.string );
+            text += ")";
 	    break;
 	case CSSPrimitiveValue::CSS_IDENT:
 	    text = getValueName(m_value.ident);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list