SVN commit 1096958 by ggarand: top/bottom extra are already accounted in offsetHeight BUG: 200342 M +1 -3 render_table.cpp --- trunk/KDE/kdelibs/khtml/rendering/render_table.cpp #1096957:1096958 @@ -2353,9 +2353,7 @@ if (!child) return 0; - return child->offsetHeight() + - static_cast(child)->cellTopExtra() + - static_cast(child)->cellBottomExtra(); + return child->offsetHeight(); } short RenderTableRow::offsetWidth() const