[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:26:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e274e6e02e18a4fef95cfc0d658c9e2b59f61730
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 26 03:52:11 2003 +0000

    	Revert one of my optimizations.  It was bogus.  You can't use
    	the parsed value of "inherit."
    
    	Fixes versiontracker.  Bug #3178204
    
            Reviewed by mjs
    
            * khtml/html/html_tableimpl.cpp:
            (HTMLTableElementImpl::createSharedCellDecls):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3701 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6a56ce0..f5238dd 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,17 @@
 2003-02-25  David Hyatt  <hyatt at apple.com>
 
+	Revert one of my optimizations.  It was bogus.  You can't use
+	the parsed value of "inherit." 
+
+	Fixes versiontracker.  Bug #3178204
+	
+        Reviewed by mjs
+
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTableElementImpl::createSharedCellDecls):
+
+2003-02-25  David Hyatt  <hyatt at apple.com>
+
 	reverseRuns was buggy and crashing.  3182658.
 	
         Reviewed by mjs
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6a56ce0..f5238dd 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,17 @@
 2003-02-25  David Hyatt  <hyatt at apple.com>
 
+	Revert one of my optimizations.  It was bogus.  You can't use
+	the parsed value of "inherit." 
+
+	Fixes versiontracker.  Bug #3178204
+	
+        Reviewed by mjs
+
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTableElementImpl::createSharedCellDecls):
+
+2003-02-25  David Hyatt  <hyatt at apple.com>
+
 	reverseRuns was buggy and crashing.  3182658.
 	
         Reviewed by mjs
diff --git a/WebCore/khtml/html/html_tableimpl.cpp b/WebCore/khtml/html/html_tableimpl.cpp
index 0426180..cd2a6cb 100644
--- a/WebCore/khtml/html/html_tableimpl.cpp
+++ b/WebCore/khtml/html/html_tableimpl.cpp
@@ -102,7 +102,7 @@ DOM::CSSStyleDeclarationImpl* HTMLTableElementImpl::createSharedCellDecls()
             m_sharedCellDecls->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, v, false, true);
             m_sharedCellDecls->setProperty(CSS_PROP_BORDER_LEFT_STYLE, v, false, true);
             m_sharedCellDecls->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, v, false, true);
-            m_sharedCellDecls->setProperty(CSS_PROP_BORDER_COLOR, CSS_VAL_INHERIT, false, true);
+            m_sharedCellDecls->setProperty(CSS_PROP_BORDER_COLOR, "inherit", false, true);
         }
     }
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list