[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:07:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f18d930aecf36c88137534569680830a166eb6ba
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 31 00:47:16 2003 +0000

            Reviewed by Darin.
    
    	- fixed 3426081 - empty cells HTMLCollection for <tr>
    	- fixed 3367598 - "length" attribute for table row "cells" always returns 0
    
            * khtml/dom/html_table.cpp:
            (HTMLTableRowElement::cells): TR_CELLS, not TABLE_ROWS.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5334 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index bd82b35..0da9a62 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-10-30  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin.
+
+	- fixed 3426081 - empty cells HTMLCollection for <tr>
+	- fixed 3367598 - "length" attribute for table row "cells" always returns 0
+	
+        * khtml/dom/html_table.cpp:
+        (HTMLTableRowElement::cells): TR_CELLS, not TABLE_ROWS.
+
 2003-10-30  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3468916, outline needs its own paint action so that focus rings don't draw under other content.
diff --git a/WebCore/khtml/dom/html_table.cpp b/WebCore/khtml/dom/html_table.cpp
index 8c981a9..b4d241e 100644
--- a/WebCore/khtml/dom/html_table.cpp
+++ b/WebCore/khtml/dom/html_table.cpp
@@ -677,7 +677,7 @@ void HTMLTableRowElement::setSectionRowIndex( long /*_sectionRowIndex*/ )
 HTMLCollection HTMLTableRowElement::cells() const
 {
     if(!impl) return HTMLCollection();
-    return HTMLCollection(impl, HTMLCollectionImpl::TABLE_ROWS);
+    return HTMLCollection(impl, HTMLCollectionImpl::TR_CELLS);
 }
 
 void HTMLTableRowElement::setCells( const HTMLCollection & /*_cells*/ )

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list