[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 06:44:04 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 026b45e2b6dfc9f90389b25980ac29a4c43ba2d9
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 24 21:45:11 2002 +0000

    	Make sure that changes to the CLASS attribute mark the
    	element as changed (as if a CSS property were added or
    	removed).
    
    	This makes the brainjar.com rollovers work much better.
    
            * khtml/html/html_elementimpl.cpp:
            (HTMLElementImpl::parseAttribute):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2147 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index c034497..9877e26 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,14 @@
+2002-09-24  David Hyatt  <hyatt at apple.com>
+
+	Make sure that changes to the CLASS attribute mark the
+	element as changed (as if a CSS property were added or
+	removed).
+
+	This makes the brainjar.com rollovers work much better.
+	
+        * khtml/html/html_elementimpl.cpp:
+        (HTMLElementImpl::parseAttribute):
+
 2002-09-24  Chris Blumenberg  <cblu at apple.com>
 
 	Renamed element info keys to WebElement* instead of WebContextMenuElement*
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index c034497..9877e26 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,14 @@
+2002-09-24  David Hyatt  <hyatt at apple.com>
+
+	Make sure that changes to the CLASS attribute mark the
+	element as changed (as if a CSS property were added or
+	removed).
+
+	This makes the brainjar.com rollovers work much better.
+	
+        * khtml/html/html_elementimpl.cpp:
+        (HTMLElementImpl::parseAttribute):
+
 2002-09-24  Chris Blumenberg  <cblu at apple.com>
 
 	Renamed element info keys to WebElement* instead of WebContextMenuElement*
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index c034497..9877e26 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2002-09-24  David Hyatt  <hyatt at apple.com>
+
+	Make sure that changes to the CLASS attribute mark the
+	element as changed (as if a CSS property were added or
+	removed).
+
+	This makes the brainjar.com rollovers work much better.
+	
+        * khtml/html/html_elementimpl.cpp:
+        (HTMLElementImpl::parseAttribute):
+
 2002-09-24  Chris Blumenberg  <cblu at apple.com>
 
 	Renamed element info keys to WebElement* instead of WebContextMenuElement*
diff --git a/WebCore/khtml/html/html_elementimpl.cpp b/WebCore/khtml/html/html_elementimpl.cpp
index 2b59c41..5578ee8 100644
--- a/WebCore/khtml/html/html_elementimpl.cpp
+++ b/WebCore/khtml/html/html_elementimpl.cpp
@@ -83,6 +83,7 @@ void HTMLElementImpl::parseAttribute(AttributeImpl *attr)
     case ATTR_CLASS:
         // class
         setHasClass();
+	setChanged();
         break;
     case ATTR_STYLE:
         // ### we need to remove old style info in case there was any!

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list