Support 'style only' override in style system
This's a ticket derived from #705, which provide a UC of the following style definition which we don't support now:
{ element : 'strong', overrides : [ { element: 'b'}, { element: 'font', styles : { 'font-weight' : 'bold' } } ] }
And a more generic UC ( and actually a common case )with 'style' only definition could be inferred as:
{ element : 'strong', overrides : [ { element: 'b'}, { element: '*', styles : { 'font-weight' : 'bold' } } ] }
Which declare that we need to consider bold for the following two cases:
- It's a <strong> tag;
- It's a <b> tag;
- It's any tag with "font-weight" : "bold" style;
Milestone CKEditor 3.x deleted