What are the dangers of inserting <li>...</li> into a page without enclosing the item(s) in a <ul> block? For example:
<div style="border:solid 1px red;">
<li>Item</li>
<li>Another Item</li>
<li>Yet Another Item</li>
</div>
Validation is the least of my concerns, I'm wondering what this might break in browsers for the end user's ability to view the page as intended.
