﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9947	Editor Width Overflows in Webkit Browsers	Edward A Savage Jr	Olek Nowodziński	"I have found the menus do not wrap properly on Webkit (confirmed in Chrome 23.0.1271.97 m and Safari 5.1.7) browsers when the editor is inside a `fieldset` element. This causes the editor to overflow parent containers.

'''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;
			}
			#content {
				margin: 0 auto;
				border: 1px solid black;
				padding: 10px;
				width: 400px;
				overflow: hidden;
				background-color: white;
			}
			fieldset {
				margin: 0;
				border: 0 none;
				padding: 0;
			}
		</style>
	</head>
	<body>
		<div id=""content"">
			<fieldset>
				<textarea name=""editor1"" id=""editor1"">&lt;p&gt;Foo foo!&lt;/p&gt;</textarea>
			</fieldset>
		</div>
		<script type=""text/javascript"" src=""http://ckeditor.com/apps/ckeditor/4.0.1/ckeditor.js""></script>
		<script>
			CKEDITOR.replace('editor1');
		</script>
	</body>
</html>
}}}

'''Firefox:'''[[BR]]
[[Image(http://i.imgur.com/3ddX4.png)]]

'''Chrome:'''[[BR]]
[[Image(http://i.imgur.com/gDW4c.png)]]

I also created [http://stackoverflow.com/q/14261708/244826 a post on Stack Overflow]."	Bug	closed	Normal	CKEditor 4.0.2	General	4.0 Beta	fixed	webkit chrome safari	
