[Webkit-unassigned] [Bug 39381] New: Zero width TD may cause child TD's of sibling TD's to have incorrect widths

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 19 14:55:18 PDT 2010


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

           Summary: Zero width TD may cause child TD's of sibling TD's to
                    have incorrect widths
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: fu at mailinator.com


The inner most TD of the following is 1px too wide, apparently because of the following 0 width td:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
    <div>
        <table cellpadding="0" cellspacing="0" border="0">
            <tr>
                <td>
                    <table cellpadding="0" cellspacing="0" border="0" width="100%">
                        <tr>
                            <td>
                                    <img src="xx.jpg" alt="" />
                            </td>
                        </tr>
                    </table>
                </td>
                <td style="width: 0px;">
                </td>
            </tr>
        </table>
    </div>
</body>
</html>

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