It seems that there is a change in the way HTML messages are displayed as plain
text in SM2 (and I assume TB3) compared to SM1 (and I assume TB2).  If I take
the following HTML message

...
Content-Type: text/html; charset="utf-8"
Content-Transfer-Encoding: 8bit

#include &lt;iostream&gt;<br/> <br/> int main()<br/> {<br/> &nbsp;&nbsp;&nbsp;
return 0;<br/> }<br/> <br/>

then in SM1 (in plain text mode) this is rendered correctly as

------------
#include <iostream>

int main()
{
    return 0;
}
-----------

but in SM2 (again in plain text mode) it is rendered as

------------------
#include <iostream>

int main()
{
return 0;
}
-------------------

The leading &nbsp;'s (non-breaking spaces) have been removed, destroying the
indentation of the code.

Comments anyone?

-- 
David Wilkinson
_______________________________________________
support-seamonkey mailing list
[email protected]
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to