wxWidgets/samples/html/test/listtest.htm
Vadim Zeitlin bb56e01e3a removed trailing CRs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2005-02-13 23:08:09 +00:00

29 lines
475 B
HTML

<html>
<body>
<ul>
<li>This is line one, try to make page width very small</li>
<li>Same with line 2</li>
</ul>
------
<table>
<tr>
<td>
<ul><li>Simple list in a table. This table cell may wrap.</li></ul>
</td>
<td>
Second column, unimportant
</td>
<tr>
<tr>
<td nowrap>
<ul><li>List in a table, this cell should not wrap</li></ul>
</td>
<td>
Second column, unimportant
</td>
<tr>
</table>
</body>
</html>