diff --git a/src/domobserver.ts b/src/domobserver.ts index a6e09af..0636d17 100644 --- a/src/domobserver.ts +++ b/src/domobserver.ts @@ -81,7 +81,9 @@ export class DOMObserver { this.flush() }) - if (window.EditContext && (view.constructor as any).EDIT_CONTEXT === true) { + if (window.EditContext && (view.constructor as any).EDIT_CONTEXT === true && + // Chrome <126 doesn't support inverted selections in edit context (#1392) + !(browser.chrome && browser.chrome_version < 126)) { this.editContext = new EditContextManager(view) if (view.state.facet(editable)) view.contentDOM.editContext = this.editContext.editContext