[Webkit-unassigned] [Bug 32744] Table nested child table's column widths with nowrap

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 20 10:29:57 PST 2010


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





--- Comment #3 from Brad Beattie <bradbeattie at gmail.com>  2010-01-20 10:29:57 PST ---
Not sure why the attachments aren't displaying anymore. Will just paste the
source code.

<html>
        <head>
                <style type="text/css">
                        table { width: 100%; }
                        td { border: 2px solid #000; background:
rgba(0,0,0,0.3); }
                </style>
        </head>
        <body>
                <h2>With nowrap</h2>
                <table>
                        <tr>
                                <td style="width: 100%">asdf</td>
                                <td>asdf</td>
                        </tr>
                        <tr>
                                <td colspan="2">
                                        <table>
                                                <tr>
                                                        <td>zxcv</td>
                                                        <td style="white-space:
nowrap;">zxcv zxcv zxcv zxcv</td>
                                                </tr>
                                        </table>
                                </td>
                        </tr>
                </table>
                <h2>Without nowrap</h2>
                <table>
                        <tr>
                                <td style="width: 100%">asdf</td>
                                <td>asdf</td>
                        </tr>
                        <tr>
                                <td colspan="2">
                                        <table>
                                                <tr>
                                                        <td>zxcv</td>
                                                        <td>zxcv zxcv zxcv
zxcv</td>
                                                </tr>
                                        </table>
                                </td>
                        </tr>
                </table>
        </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