chromium/third_party/blink/web_tests/tables/mozilla/bugs/bug57828-2.html

<html>
<head>
<title>test case</title>
</head>

<body>

<p>The table below takes out the nowrap with the cell of 1% width.</p>

<table border=0 cellpadding=2 cellspacing=0 width="675">
        <tr bgcolor="#9999cc">
                <td>
                <font face="arial,helvetica" size=4><b>Technology News</b></font><font face="arial,helvetica" size=2> - updated  12:15 PM ET Oct 24</font>
                </td>

                <td width="1%">
                        <table cellpadding=3 cellspacing=0>
                                <tr>
                                        <td bgcolor="#ccccff">
                                                <IMG src="../images/my16.gif" width=16 height=16 border=0 align=left alt="My">
                                                <FONT face=arial size="-2"><a href="http://rd.yahoo.com/addtomy/*http://edit.yahoo.com/config/set_news?.add=zdnt">Add to My Yahoo!</a></font>
                                        </td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>

<p>The table below leaves in the nowrap but take out the 1% width in the cell.</p>

<table border=0 cellpadding=2 cellspacing=0 width="675">
        <tr bgcolor="#9999cc">
                <td>
                <font face="arial,helvetica" size=4><b>Technology News</b></font><font face="arial,helvetica" size=2> - updated  12:15 PM ET Oct 24</font>
                </td>

                <td>
                        <table cellpadding=3 cellspacing=0>
                                <tr>
                                        <td bgcolor="#ccccff" nowrap>
                                                <IMG src="../images/my16.gif" width=16 height=16 border=0 align=left alt="My">
                                                <FONT face=arial size="-2"><a href="http://rd.yahoo.com/addtomy/*http://edit.yahoo.com/config/set_news?.add=zdnt">Add to My Yahoo!</a></font>
                                        </td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>

</body>
</html>