﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12539	Two CKEditors within the same fieldset will overflow on resize in Chrome/Safari.	Seth		"Inside the same fieldset, two ckeditors will overflow the container on resize in Chrome/Safari.

Code that reproduces the bug:

{{{
<!DOCTYPE html>
<html>
	<head>
		<title>CKEditor</title>
		<meta http-equiv=""Content-Type"" content=""text/html; charset=UTF-8"">
		<style>
			html {
				background-color: lightgray;
			}
			textarea {
				width: 100%;
			}
		</style>
	</head>
	<body>
		<div id=""content"">
			<fieldset>
				<textarea name=""editor1"" id=""editor1"">&lt;p&gt;Foo foo!&lt;/p&gt;</textarea>	
				<textarea name=""editor2"" id=""editor2"">&lt;p&gt;Foo foo!&lt;/p&gt;</textarea>
			</fieldset>
		</div>
		<script type=""text/javascript"" src=""http://ckeditor.com/apps/ckeditor/4.4.5/ckeditor.js""></script>
		<script>
			CKEDITOR.replace('editor1');
			CKEDITOR.replace('editor2');
		</script>
	</body>
</html>
}}}"	Bug	confirmed	Normal		General	3.6.3		Chrome Webkit	
