SVN commit 453694 by luis_pedro: Make work M +3 -1 render_replaced.cpp --- branches/KDE/3.5/kdelibs/khtml/rendering/render_replaced.cpp #453693:453694 @@ -72,7 +72,9 @@ m_width = calcReplacedWidth(); m_width += paddingLeft() + paddingRight() + borderLeft() + borderRight(); - if ( style()->width().isPercent() || style()->height().isPercent() ) { + if ( style()->width().isPercent() || style()->height().isPercent() || + style()->maxWidth().isPercent() || style()->maxHeight().isPercent() || + style()->minWidth().isPercent() || style()->minHeight().isPercent() ) { m_minWidth = 0; m_maxWidth = m_width; }