We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I discovered an error concerning undo in a scenario with paste and delete.
This test doesn't pass:
john.setData( '<paragraph>Ab[]cd</paragraph><paragraph>Wxyz</paragraph>' ); john.editor.model.insertContent( new DocumentFragment( [ new Element( 'paragraph', null, new Text( 'Foo' ) ), new Element( 'paragraph', null, new Text( 'Bar' ) ) ] ) ); john.setSelection( [ 1, 3 ], [ 2, 2 ] ); john._processExecute( 'delete' ); expectClients( '<paragraph>AbFoo</paragraph><paragraph>Baryz</paragraph>' ); john.undo(); expectClients( '<paragraph>AbFoo</paragraph><paragraph>Barcd</paragraph><paragraph>Wxyz</paragraph>' ); john.undo(); expectClients( '<paragraph>Abcd</paragraph><paragraph>Wxyz</paragraph>' );
There are two problems, with split x split transformation and merge x split transformation. These are some edge cases that weren't yet covered in OT.
The text was updated successfully, but these errors were encountered:
Merge pull request #1702 from ckeditor/t/1701
ca619e7
Fix: Editor crashed during undo in some pasting+remove scenarios. Closes #1701.
scofalik
Successfully merging a pull request may close this issue.
I discovered an error concerning undo in a scenario with paste and delete.
This test doesn't pass:
There are two problems, with split x split transformation and merge x split transformation. These are some edge cases that weren't yet covered in OT.
The text was updated successfully, but these errors were encountered: