Issue with Google Chrome browser
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CKEditor test</title>
<script src="ckeditor/ckeditor.js" type="text/javascript"></script>
</head>
<body>
<form method="post" action="ckeditor.php">
<input name="title" type="text" value="test" />
<textarea id="editor" name="editor" rows="10" cols="30"></textarea>
<input type="submit" value="go" />
</form>
<script type="text/javascript">
CKEDITOR.replace('editor', {
width: 600
});
</script>
</body>
</html>
