﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8590	Form tags being removed on editor load in FF3.5 and Chrome 15	Mike		"Problem editing existing forms using CKEditor the following code replicates the problem I'm having with our intranet cms:


{{{
<html xmlns=""http://www.w3.org/1999/xhtml"">
<head>
	<title>Form problem example</title>
	<meta content=""text/html; charset=utf-8"" http-equiv=""content-type"" />
	<script type=""text/javascript"" src=""../ckeditor.js""></script>
	<script src=""sample.js"" type=""text/javascript""></script>
	<link href=""sample.css"" rel=""stylesheet"" type=""text/css"" />
</head>
<body>
	<form action=""sample_posteddata.php"" method=""post"">
	<h2 class=""samples"">Form problem example</h2>
	<p>Works fine in IE6 - IE8, fails in FF3.5 & Chrome 15</p>
		<p>
			<div class=""editorArea"" style=""min-height:400px;"">
			<div id=""mainEditor"" name=""mainEditor"" style=""width: 100%; height: 400px; margin-bottom:26px;"" class=""mainEditor"">						
				<form action="""" class=""form"" method=""post"" name=""frm_Comments"">
				<fieldset>
					<legend>Your details</legend>
					<table class=""form"">
						<tbody>
							<tr>
								<td class=""control"">
									<label for=""SenderName"">Your Name *</label>
								</td>
								<td>
									<input class=""singletextinput"" name=""SenderName"" type=""text""/>
								</td>
							</tr>
							<tr>
								<td class=""control"">
									<label for=""SenderDept"">Your Department</label>
								</td>
								<td>
									<input class=""singletextinput"" name=""SenderDept"" type=""text""/>
								</td>
							</tr>
							<tr>
								<td class=""control"">
									<label for=""SenderEmail"">Your E-mail address*</label>
								</td>
								<td>
									<input class=""singletextinput"" name=""SenderEmail"" type=""text""/>
								</td>
							</tr>
							<tr>
								<td class=""control"">
									<label for=""SenderPhone"">Your Phone number</label>
								</td>
								<td>
									<input class=""singletextinput"" name=""SenderPhone"" type=""text""/>
								</td>
							</tr>
						</tbody>
					</table>
				</fieldset>
				<fieldset>
					<legend>Your comments</legend>
					<table class=""form"">
						<tbody>
							<tr>
								<td class=""control"">
									<label for=""SenderComments"">Enter your comments *</label>
								</td>
								<td>
									<textarea class=""multitextinput"" name=""SenderComments"" type=""text""></textarea>
								</td>
							</tr>
							<tr>
								<td colspan=""2"">
									<input id=""submit"" type=""submit"" value=""submit""/>
								</td>
							</tr>
						</tbody>
					</table>
				</fieldset>
			</form>
			<p>some text</p>	
			</div>
		</div>
			<script type=""text/javascript"">
			//<![CDATA[
				CKEDITOR.replace( 'mainEditor',
					{
						skin : 'kama'
					});
			//]]>
			</script>
		</p>	
</body>
</html>
}}}

The form loads as expected in IE6 - IE8, but the form elements are stripped out in FF and Chrome.
"	Bug	closed	Normal		General	3.0	invalid		
