Has anyone seen this sort of behavior out of Jasper (tc4b7) before?
I give it a trivially simple JSP page in XML syntax:
------------------------------------------------
<?xml version="1.0" ?>
<jsp:root version="1.2"
xmlns:jsp="http://java.sun.com/JSP/Page">
<html>
<body>
<table>
<tr>
<td>
<img src="" />&nbsp;
<img src="" />&nbsp;
</td>
</tr>
</table>
</body>
</html>
</jsp:root>
------------------------------------------------
and then if I view source on the browser (IE), I get:
---------------------------------------------------
<html ><body ><table ><tr ><td ><img src=""></img><img src=""></img>
</td>
</tr>
</table>
</body>
</html>
----------------------------------------------------
Note that one of the non-breaking spaces has migrated from being between
the two <img> tags to being after them both.
Thanks - Mark