[Webkit-unassigned] [Bug 28064] New: wrong calculation of overflow size for flexbox and table

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Aug 7 01:01:31 PDT 2009


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

           Summary: wrong calculation of overflow size for flexbox and
                    table
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: hamaji at chromium.org


RenderFlexibleBox and RenderTable has following code

    IntRect reflection(reflectionBox());
    m_overflowTop = min(m_overflowTop, reflection.y());
    m_overflowHeight = max(m_overflowHeight, reflection.bottom());
    m_overflowLeft = min(m_overflowLeft, reflection.x());
    m_overflowHeight = max(m_overflowWidth, reflection.right());

The last line is obviously wrong. I'll send a patch later.

-- 
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