﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2874	tables: in FF caption seems to be in the wrong place	trumbitta	Martin Kou	"FCKeditor generates the following[[BR]]

{{{
    <table ....>
        <thead>
            <tr>
                <th scope=""col"">1</th>
                <th scope=""col"">2</th>
            </tr>
        </thead>
        <caption>My Caption</caption>
        <tbody>
            <tr>
                <td>...</td>
                <td>...</td>
            </tr>
        </tbody>
    </table>
}}}

The following would be the correct markup[[BR]]


{{{
    <table ....>
        <caption>My Caption</caption>
        <thead>
            <tr>
                <th scope=""col"">1</th>
                <th scope=""col"">2</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>...</td>
                <td>...</td>
            </tr>
        </tbody>
    </table>
}}}

Going further with my tests, I just found that the bug doesn't show up if you use MSIE7.
My conclusions:
 * the problem is strictly related to the browser and its ""DOM engine""
OR
 * the problem is inside the portion of code dedicated to gecko

"	Bug	closed	Normal	FCKeditor 2.6.5	General	FCKeditor 2.6.4	fixed	Confirmed HasPatch Review+	
