﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9698	content editable inside a main table causes bugs	julio		"There is a bug when you have a div with contenteditable=""true"" inside a main table.

There are many ckeditor functions not working inside these editable block. For example, if you have a structure like this:

<table cellpadding=""0"" cellspacing=""10"" border=""0"">
        <tbody>
            <tr>
                <td width=""500px"">
                    <div contenteditable=""true"">
                        <p class=""texto editable"" style=""text-align: justify;"">
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas lectus eros, egestas
                            ut fringilla a, adipiscing ac diam. Vestibulum odio risus, dignissim eu consequat
                            quis, ullamcorper vel est. Donec aliquet lorem ut eros facilisis bibendum imperdiet
                            nisl egestas...
                        </p>
                    </div>
                </td>
               </tr>
        </tbody>
    </table>

The main problem here is when you SELECT ALL.

Eg.: if you select all and want to delete the selection, THE WHOLE table will be deleted instead of deleting only the <p> content.
The same happens with font-family, font-size and font-colors selectors. If you want to apply one of these options none of them will work because the SELECT ALL select the TABLE and not only the text...

"	Bug	closed	Normal		General	4.0	fixed		rkolomis@…
