[Webkit-unassigned] [Bug 87050] REGRESSION (r105513): CSS max-width is not applied to SVG element

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 23 00:28:35 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=87050


Nikolas Zimmermann <zimmermann at kde.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fmalita at chromium.org




--- Comment #5 from Nikolas Zimmermann <zimmermann at kde.org>  2012-05-23 00:27:22 PST ---
Thanks for the quick fix Dan!
Why was the call to hasReplacedLogicalHeight() removed?

bool RenderReplaced::hasReplacedLogicalHeight() const
{
    if (style()->logicalHeight().isAuto())
        return false;

    if (style()->logicalHeight().isSpecified()) {
        if (hasAutoHeightOrContainingBlockWithAutoHeight(this))
            return false;
        return true;
    }

    return false;
}

It contains extra logic, for auto height containing blocks. Is that not needed or wrong for RenderSVGRoot? It's been a while since I looked at this.
CC'ing Florin, who added this IIRC.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list