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