Changes between Initial Version and Version 1 of Ticket #6110


Ignore:
Timestamp:
Sep 13, 2010, 9:59:52 AM (14 years ago)
Author:
Krzysztof Studnik
Comment:

I am not 100% sure if I confirmed the same problem as #twelling (without complete code, I was guessing). But something is not right with the code interpretation, when one quotation mark is gone

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6110

    • Property Status changed from new to confirmed
    • Property Keywords Webkit Opera Firefox IE added
    • Property Version changed from to 3.4
    • Property Summary changed from Altering code to Code altered after deleting quotation mark within <td>
  • Ticket #6110 – Description

    initial v1  
    11When 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.
    22
    3 Example
     3TC:
     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        &nbsp;</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         &nbsp;</td>
     36        </tr>
     37  </tbody>
     38</table>
     39}}}
     40  a. in IE8
     41{{{
    442
    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                        &lt;td align=&quot;middle&quot; bgcolor=&quot;#009900&quot; class=&quot;style26&quot; style=&quot;background-image: url(http://www.aaagraphicsanddesign.com/index_htm_files/4.png); width: 216px&gt; &nbsp;
     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&gt;
     57                                 &lt;/td&gt;
     58                &lt;/tr&gt;
     59        &lt;/tbody&gt;
     60&lt;/table&gt;
     61">
     62        &nbsp;</td>
     63    </tr>
     64  </tbody>
     65</table>
     66}}}
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy