﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12689	Empty inline element should be removed when selection leaves it.	Artur Delura		"**Example use case**
1. Open editor and clear it's content.
2. Type some text: {{{abcdefg}}}
3. Put caret here: {{{ab^cdefg}}}
4. Select font size: 72
3. Put caret somewhere else: {{{abcd^efg}}}
5. Select font size: 24

As you can see cursor fit 72 but we don't have any 72 text. That's because empty span hasn't been removed.

Since it's affect only visual part of editor (empty elements are removed on save). We might consider using CSS3 {{{:empty}}} pseudo selector:

{{{
span:empty {
  display: none;
}
}}}
But it's more workaround rather sultion, and it's not fully supported by browsers and it's not bulletproof."	Bug	confirmed	Normal		General	4.0			
