Internal: Adjusted the code to changes required for replacing the `StylesProcessor` singleton with an instance of the class. See ckeditor/ckeditor5#6091.
@@ -64,7 +64,7 @@ export default class InlineEditor extends Editor {
constructor( sourceElementOrData, config ) {
super( config );
- this.data.processor = new HtmlDataProcessor();
+ this.data.processor = new HtmlDataProcessor( this.editing.view.document );
this.model.document.createRoot();