Opened 16 years ago
Closed 15 years ago
#2036 closed defect (fixed)
Editor2: HTML invalidated in IE
Reported by: | guest | Owned by: | liucougar |
---|---|---|---|
Priority: | high | Milestone: | 0.9 |
Component: | General | Version: | 0.4 |
Keywords: | editor2 invalid html | Cc: | |
Blocked By: | Blocking: |
Description
When I pass valid HTML into the Editor2 in source mode and then switch to WYSIWYG mode and back my originally valid is now in valid (e.g. quotes of attributes are removed). Now I can´t use the result anymore for further processing! Example:
Original: <table id="demo" cellspacing="5" cellpadding="5">
<tr>
<td align="center">
test
</td>
</tr>
</table>
Result: <TABLE id=demo cellSpacing=5 cellPadding=5>
<TBODY>
<TR>
<TD align=middle>
test
</TD> <TD align=middle>
test2
</TD>
</TR>
</TBODY>
</TABLE>
Change History (4)
comment:1 Changed 15 years ago by
Milestone: | → 0.4.2 |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
comment:2 Changed 15 years ago by
Resolution: | wontfix |
---|---|
Status: | closed → reopened |
comment:3 Changed 15 years ago by
Owner: | changed from anonymous to liucougar |
---|---|
Status: | reopened → new |
comment:4 Changed 15 years ago by
Milestone: | 0.4.2 → 0.9 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
this should have been fixed in trunk along with another bug
if not, please reopen this
(the trunk will remove all new lines in the html source when output, but it is still valid)
This is a problem with using IE's isContentEditable. There's nothing we can do about this as long as their browser provides invalid markup while using their editor code.