[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:01:56 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 047a8b3b59c8cbdcdcab1d6021be23d0fc14cc6f
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 17 09:24:17 2002 +0000

    	Fix for 3038168.  Duh.  Remember to be case-insensitive when
    	checking the type of the <style> attribute.
    
            * khtml/html/html_headimpl.cpp:
            (HTMLStyleElementImpl::parseAttribute):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2715 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index c581b14..adaa891 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-11-17  David Hyatt  <hyatt at apple.com>
 
+	Fix for 3038168.  Duh.  Remember to be case-insensitive when
+	checking the type of the <style> attribute.
+	
+        * khtml/html/html_headimpl.cpp:
+        (HTMLStyleElementImpl::parseAttribute):
+
+2002-11-17  David Hyatt  <hyatt at apple.com>
+
 	This is a fix for bug 3058470.  The bug was that replaced elements
 	were computing their min and max widths wrong.  Specifically they
 	were not adding in borders and padding!  This means that any image
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index c581b14..adaa891 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-11-17  David Hyatt  <hyatt at apple.com>
 
+	Fix for 3038168.  Duh.  Remember to be case-insensitive when
+	checking the type of the <style> attribute.
+	
+        * khtml/html/html_headimpl.cpp:
+        (HTMLStyleElementImpl::parseAttribute):
+
+2002-11-17  David Hyatt  <hyatt at apple.com>
+
 	This is a fix for bug 3058470.  The bug was that replaced elements
 	were computing their min and max widths wrong.  Specifically they
 	were not adding in borders and padding!  This means that any image
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index c581b14..adaa891 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-11-17  David Hyatt  <hyatt at apple.com>
 
+	Fix for 3038168.  Duh.  Remember to be case-insensitive when
+	checking the type of the <style> attribute.
+	
+        * khtml/html/html_headimpl.cpp:
+        (HTMLStyleElementImpl::parseAttribute):
+
+2002-11-17  David Hyatt  <hyatt at apple.com>
+
 	This is a fix for bug 3058470.  The bug was that replaced elements
 	were computing their min and max widths wrong.  Specifically they
 	were not adding in borders and padding!  This means that any image
diff --git a/WebCore/khtml/html/html_headimpl.cpp b/WebCore/khtml/html/html_headimpl.cpp
index 917da69..5519797 100644
--- a/WebCore/khtml/html/html_headimpl.cpp
+++ b/WebCore/khtml/html/html_headimpl.cpp
@@ -370,7 +370,7 @@ void HTMLStyleElementImpl::parseAttribute(AttributeImpl *attr)
     switch (attr->id())
     {
     case ATTR_TYPE:
-        m_type = attr->value();
+        m_type = attr->value().lower();
         break;
     case ATTR_MEDIA:
         m_media = attr->value().string().lower();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list