Bug 53290 - crash with thead/colgroup in 3.1 branch
Summary: crash with thead/colgroup in 3.1 branch
Status: RESOLVED FIXED
Alias: None
Product: konqueror
Classification: Applications
Component: khtml (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR crash
Target Milestone: ---
Assignee: Konqueror Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-01-22 23:01 UTC by Daniel Naber
Modified: 2003-02-05 02:26 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel Naber 2003-01-22 23:01:44 UTC
Version:            (using KDE KDE 3.0.99)
Installed from:    Compiled From Sources

This file crashes konqueror because of an assertion failure in render_table.cpp:212:

<html>
<head>
<title>reproducible crash (assertion failed render_table.cpp:212)</title>
</head>
<body>

<table>

<colgroup></colgroup>

<thead>
<tr><td>bla</td></tr>
</thead>

<thead>
<tr><td>asasddasdas</td></tr>
</thead>

</table>

</body>
</html>
Comment 1 Dirk Mueller 2003-01-31 02:41:05 UTC
hmm, still?  
not reproduceable at all.. 
 
reopen when it happens in current code for you as well.  
 
only branch ? or HEAD as well? 
Comment 2 Daniel Naber 2003-01-31 14:05:17 UTC
Still happens with branch (kdelibs/khtml updated an hour ago), cannot test with 
HEAD. 
Comment 3 Dirk Mueller 2003-02-05 02:26:29 UTC
Subject: KDE_3_1_BRANCH: kdelibs/khtml/rendering

CVS commit by mueller: 

D'oh!
CCMAIL: 53290-done@bugs.kde.org


  M +2 -2      render_table.cpp   1.215.2.6


--- kdelibs/khtml/rendering/render_table.cpp  #1.215.2.5:1.215.2.6
@@ -567,5 +567,5 @@ void RenderTable::recalcSections()
         case TABLE_COLUMN_GROUP:
             has_col_elems = true;
-            return;
+            break;
         case TABLE_HEADER_GROUP: {
             RenderTableSection *section = static_cast<RenderTableSection *>(child);