[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:15:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 76287b3ed8df1da58b5d63a691ca12810b567c6d
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Dec 15 11:23:14 2002 +0000

    	operator== on CSSSelectors needed to be updated to compare
    	_pseudoTypes.  A nice subtle bug from the mega-patch.
    
            Reviewed by mjs
    
            * khtml/css/cssparser.cpp:
            (CSSSelector::operator == ):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3060 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 69c43a3..7f90dfb 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,15 @@
 2002-12-15  David Hyatt  <hyatt at apple.com>
 
+	operator== on CSSSelectors needed to be updated to compare
+	_pseudoTypes.  A nice subtle bug from the mega-patch. 
+	
+        Reviewed by mjs
+
+        * khtml/css/cssparser.cpp:
+        (CSSSelector::operator == ):
+
+2002-12-15  David Hyatt  <hyatt at apple.com>
+
 	Fix for 3128429, sans-serif font got broken.  Just a typo
 	from darin's mega-patch.  
 	
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 69c43a3..7f90dfb 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,15 @@
 2002-12-15  David Hyatt  <hyatt at apple.com>
 
+	operator== on CSSSelectors needed to be updated to compare
+	_pseudoTypes.  A nice subtle bug from the mega-patch. 
+	
+        Reviewed by mjs
+
+        * khtml/css/cssparser.cpp:
+        (CSSSelector::operator == ):
+
+2002-12-15  David Hyatt  <hyatt at apple.com>
+
 	Fix for 3128429, sans-serif font got broken.  Just a typo
 	from darin's mega-patch.  
 	
diff --git a/WebCore/khtml/css/cssparser.cpp b/WebCore/khtml/css/cssparser.cpp
index 3ca6f2d..d083964 100644
--- a/WebCore/khtml/css/cssparser.cpp
+++ b/WebCore/khtml/css/cssparser.cpp
@@ -3127,7 +3127,7 @@ bool CSSSelector::operator == ( const CSSSelector &other )
 	if ( sel1->tag != sel2->tag || sel1->attr != sel2->attr ||
 	     sel1->relation != sel2->relation || sel1->match != sel2->match ||
 	     sel1->nonCSSHint != sel2->nonCSSHint ||
-	     sel1->value != sel2->value )
+	     sel1->value != sel2->value || sel1->_pseudoType != sel2->_pseudoType)
 	    return false;
 	sel1 = sel1->tagHistory;
 	sel2 = sel2->tagHistory;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list