[webkit-changes] cvs commit: WebCore/khtml/rendering render_table.cpp

Eric eseidel at opensource.apple.com
Sat Nov 26 17:10:02 PST 2005


eseidel     05/11/26 17:10:02

  Modified:    .        ChangeLog
               khtml/rendering render_table.cpp
  Log:
  Bug #: 5822
  Submitted by: mitz
  Reviewed by: darin
          * khtml/rendering/render_table.cpp: <col>, <colgroup> <caption> fix
          http://bugzilla.opendarwin.org/show_bug.cgi?id=5822
  
  Revision  Changes    Path
  1.403     +1 -1      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.402
  retrieving revision 1.403
  diff -u -r1.402 -r1.403
  --- ChangeLog	27 Nov 2005 01:06:35 -0000	1.402
  +++ ChangeLog	27 Nov 2005 01:09:58 -0000	1.403
  @@ -3,7 +3,7 @@
           Reviewed by darin.  Committed by eseidel.
   
           * khtml/rendering/render_table.cpp: <col>, <colgroup> <caption> fix
  -        http://bugzilla.opendarwin.org/show_bug.cgi?id=5829
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=5822
   
   2005-11-26  Eric Seidel  <eseidel at apple.com>
   
  
  
  
  1.141     +3 -1      WebCore/khtml/rendering/render_table.cpp
  
  Index: render_table.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/rendering/render_table.cpp,v
  retrieving revision 1.140
  retrieving revision 1.141
  diff -u -r1.140 -r1.141
  --- render_table.cpp	18 Nov 2005 23:42:06 -0000	1.140
  +++ render_table.cpp	27 Nov 2005 01:10:02 -0000	1.141
  @@ -515,7 +515,9 @@
   	    if (!next && child->parent()->isTableCol())
   		next = child->parent()->nextSibling();
   	    child = next;
  -	} else
  +	} else if (child == tCaption)
  +            child = child->nextSibling();
  +        else
   	    break;
       }
       return 0;
  
  
  



More information about the webkit-changes mailing list