[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:30:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 188deb82a99b31479ea22a782cdea182513fca61
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Mar 21 08:46:16 2003 +0000

    	Fix the color handling of link= attributes on <body> elements
    	to pass in the quirks mode so that lax parsing can take place.
    
            Reviewed by rjw and john
    
            * khtml/html/html_baseimpl.cpp:
            (HTMLBodyElementImpl::parseAttribute):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3888 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 2656feb..a29bf60 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-03-20  David Hyatt  <hyatt at apple.com>
+
+	Fix the color handling of link= attributes on <body> elements
+	to pass in the quirks mode so that lax parsing can take place.
+	
+        Reviewed by rjw and john
+
+        * khtml/html/html_baseimpl.cpp:
+        (HTMLBodyElementImpl::parseAttribute):
+
 2003-03-20  Richard Williamson   <rjw at apple.com>
 
         Use "Item" consistently in the WebHistory and WebBackForwardList.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 2656feb..a29bf60 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-03-20  David Hyatt  <hyatt at apple.com>
+
+	Fix the color handling of link= attributes on <body> elements
+	to pass in the quirks mode so that lax parsing can take place.
+	
+        Reviewed by rjw and john
+
+        * khtml/html/html_baseimpl.cpp:
+        (HTMLBodyElementImpl::parseAttribute):
+
 2003-03-20  Richard Williamson   <rjw at apple.com>
 
         Use "Item" consistently in the WebHistory and WebBackForwardList.
diff --git a/WebCore/khtml/html/html_baseimpl.cpp b/WebCore/khtml/html/html_baseimpl.cpp
index 4fb9987..2410c41 100644
--- a/WebCore/khtml/html/html_baseimpl.cpp
+++ b/WebCore/khtml/html/html_baseimpl.cpp
@@ -124,7 +124,7 @@ void HTMLBodyElementImpl::parseAttribute(AttributeImpl *attr)
 	else if ( attr->id() == ATTR_ALINK )
 	    aStr = "a:active";
 	aStr += " { color: " + attr->value().string() + "; }";
-        m_styleSheet->parseString(aStr);
+        m_styleSheet->parseString(aStr, !getDocument()->inQuirksMode());
         m_styleSheet->setNonCSSHints();
         if (attached())
             getDocument()->updateStyleSelector();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list