﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
13802	Whitespace removed for button tag	Thomas Shafer		"== Steps to reproduce ==

1. Load this html

{{{
<!DOCTYPE html>
<html>
<head>
  <title>Whitespace button test</title>
  <script type=""text/javascript"" src=""https://cdn.ckeditor.com/4.5.4/standard-all/ckeditor.js""></script>
</head>
<body>
  <div id=""editor"">
    <p>Hello <strong>Name</strong>,</p>
    <p>Hello <button>Name</button>,</p>
  </div>
  <script type=""text/javascript"">

    var element = document.getElementById('editor');

    var options = {
      extraAllowedContent: 'button'
    };

    var editor = CKEDITOR.replace(element, options);

  </script>
</body>
</html>
}}}

== Expected result ==

Space should be preserved between Hello and <button> tags.

== Actual result ==

Space is removed between Hello and <button> tags.

== Other details (browser, OS, CKEditor version, installed plugins) ==

Tested in Chrome on Mac OSX."	Bug	confirmed	Normal		General	3.0			
