Opened 10 years ago
Closed 9 years ago
#13129 closed Bug (fixed)
Block widget is not focus after drag and drop and undo
Reported by: | Piotr Jasiun | Owned by: | Szymon Cofalik |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 4.5.2 |
Component: | General | Version: | 4.5.0 Beta |
Keywords: | Cc: |
Description
- Open http://tests.ckeditor.dev:1030/tests/plugins/widget/manual/block
- Select any widget.
- Move it using drag and drop.
- Undo.
Result:
widget is not selected (it should be) and selection is lost.
Bug introduced by #13042.
Note that in #13042 this assertion were removed because they failed:
- https://github.com/ckeditor/ckeditor-dev/blob/7342d1806e7534ed14a4ec39d8d5d7b08fd61203/tests/plugins/widget/dnd.js#L380
- https://github.com/ckeditor/ckeditor-dev/blob/7342d1806e7534ed14a4ec39d8d5d7b08fd61203/tests/plugins/widget/dnd.js#L388
They should be restored after the fix or appropriate assertion should be added instead.
Change History (9)
comment:1 Changed 10 years ago by
Milestone: | → CKEditor 4.5.0 |
---|---|
Status: | new → confirmed |
comment:2 Changed 9 years ago by
Milestone: | CKEditor 4.5.0 → CKEditor 4.5.1 |
---|
comment:3 Changed 9 years ago by
Owner: | set to Szymon Cofalik |
---|---|
Status: | confirmed → assigned |
comment:4 Changed 9 years ago by
Status: | assigned → review |
---|
comment:5 Changed 9 years ago by
Status: | review → review_failed |
---|
- Messages in 1 and 2 contradict the actual assertions.
- Assertion
assert.isTrue( !!editor.getSelection().isFake, ... )
is weak because it will pass no matter which element is selected. What if something else gets selected? Useassert.areSame( widget, editor.widgets.focused, 'widget is focused' );
instead. You may needgetWidgetById
again becauseundo
will demolisheditor.widgets
and the reference will point to a non–existing widget.
comment:6 Changed 9 years ago by
Status: | review_failed → assigned |
---|
comment:8 Changed 9 years ago by
Status: | review → review_passed |
---|
comment:9 Changed 9 years ago by
Resolution: | → fixed |
---|---|
Status: | review_passed → closed |
Merged into master in git:507dd19.
Fixed on branch:t/13129.
I deleted a line of code which should be cleaned in #13042. It is not needed in current implementation of D&D and even introduces bugs. After deleting it, widget is selected after undoing. Tested on all browsers manually.
I also reverted
https://github.com/ckeditor/ckeditor-dev/blob/7342d1806e7534ed14a4ec39d8d5d7b08fd61203/tests/plugins/widget/dnd.js#L388
However
https://github.com/ckeditor/ckeditor-dev/blob/7342d1806e7534ed14a4ec39d8d5d7b08fd61203/tests/plugins/widget/dnd.js#L380
does not really make any sense to me - why we would like to check it there? I moved it before firing the event. This line was there from the beginning of the test.
I also added an extra assert to test if widget is still selected after undo.