[Webkit-unassigned] [Bug 48255] New: Stack overflow when there are too many sibling inline boxes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Oct 25 11:41:59 PDT 2010


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

           Summary: Stack overflow when there are too many sibling inline
                    boxes
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P3
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: yong.li.webkit at gmail.com
                CC: staikos at kde.org


The root reason is this function in InlineBox:

    virtual void setConstructed()
    {
        m_constructed = true;
        if (m_next)
            m_next->setConstructed();
    }

However, it is not very normal that a page contains that many sibling inline boxes. Not sure if it is worth a fix. I'll upload a patch anyway.

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