Changes between Initial Version and Version 1 of Ticket #6110
- Timestamp:
- Sep 13, 2010, 9:59:52 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6110
-
Property
Status
changed from
new
toconfirmed
- Property Keywords Webkit Opera Firefox IE added
-
Property
Version
changed from
to
3.4
-
Property
Summary
changed from
Altering code
toCode altered after deleting quotation mark within <td>
-
Property
Status
changed from
-
TabularUnified Ticket #6110 – Description
initial v1 1 1 When using a single quote within a double quote "BOTH" ckeditor and fckeditor cancel out the single quote which in turn is altering the code in the background. 2 2 3 Example 3 TC: 4 1. In CKEditor, delete all content 5 1. In source editing paste: 6 {{{ 7 <table> 8 <tbody> 9 <tr> 10 <td align="center" bgcolor="#009900" class="style26" style="background-image: url( http://www.aaagraphicsanddesign.com/index_htm_files/4.png); width: 216px"> 11 </td> 12 </tr> 13 </tbody> 14 </table> 15 }}} 16 2. Delete last " mark in <td> 17 3. Switch to WYSIWYG mode - the table cell is missing or messed 18 4. and back to Source editing 19 4. <td></td>line is interpreted wrong or deleted 20 a. in Chrome7 & Safari: 21 {{{ 22 <table> 23 <tbody> 24 <tr> 25 </tr> 26 /tbody> 27 </table> 28 }}} 29 a. in Firefox 3.6.9: 30 {{{ 31 <table> 32 <tbody> 33 <tr> 34 <td 216px="" align="center" bgcolor="#009900" class="style26" http:="" index_htm_files="" style="" width:="" www.aaagraphicsanddesign.com=""> 35 </td> 36 </tr> 37 </tbody> 38 </table> 39 }}} 40 a. in IE8 41 {{{ 4 42 5 <td class="style26" align="center" bgcolor="#009900" style="background-image: url(http://www.aaagraphicsanddesign.com/newimages/newbackground3.jpg); width: 216px">< 43 <table> 44 <tbody> 45 <tr> 46 <td align="middle" bgcolor="#009900" class="style26" style="background-image: url(http://www.aaagraphicsanddesign.com/index_htm_files/4.png); width: 216px> 47 </tr> 48 </tbody> 49 </table> 50 }}} 51 a. in Opera 10.62 52 {{{ 53 <table> 54 <tbody> 55 <tr> 56 <td align="center" bgcolor="#009900" class="style26" style="background-image: url( http://www.aaagraphicsanddesign.com/index_htm_files/4.png); width: 216px> 57 </td> 58 </tr> 59 </tbody> 60 </table> 61 "> 62 </td> 63 </tr> 64 </tbody> 65 </table> 66 }}}