﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11046	figcaption moved outside figure tag	ttlms		"In CKEditor 4.2.2 in Chrome, using the following code, ficaption tag is moved outside the figure (and table) tags.



{{{
#!div style=""font-size: 100%""
Original code:
  {{{#!python
 <table class=""nolines"">
		<tbody>
			<tr>
				<td>
					<figure>
						<img class=""borderme shadowme"" src=""../media/4622/thyroid_intro_thyroidandparathyroid_3_img1of2.jpg"" /></figure>
					<figcaption>Transverse Imaging Plane</figcaption>
</td>
				<td>
					<figure>
						<img class=""borderme shadowme"" src=""../media/4622/thyroid_intro_thyroidandparathyroid_3_img2of2.jpg"" /></figure>
					<figcaption>Transverse View Thyroid Gland</figcaption>
</td>
			</tr>
		</tbody>
</table>  }}}
}}}



{{{
#!div style=""font-size: 100%""
Modified by ckeditor:
  {{{#!python
<figcaption>Transverse Imaging Plane</figcaption><figcaption>Transverse View Thyroid Gland</figcaption>
<table class=""nolines"">
	<tbody>
		<tr>
			<td>
			<figure><img class=""borderme shadowme"" src=""../media/4622/thyroid_intro_thyroidandparathyroid_3_img1of2.jpg"" /></figure>
			</td>
			<td>
			<figure><img class=""borderme shadowme"" src=""../media/4622/thyroid_intro_thyroidandparathyroid_3_img2of2.jpg"" /></figure>
			</td>
		</tr>
	</tbody>
</table>
  }}}
}}}

Also, I noticed figcaption doesn't appear in the status bar as a selectable tag (related?). I am using config.allowedContent = true; as well as config.autoParagraph = false; to supress extra paragraphs, which I think are related to the formatting issue."	Bug	confirmed	Normal		General				
