-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
Fixed Ctrl+A focusing inline editor if it was started and ended with a list #2274
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
2aa5b44
CTRL+A forces focus on editor starting and/or ending with a list in i…
theNailz 44725c3
Fixed the source of bug with widgetselection getting keypressed from …
mlewand 2c9508e
Tests: added manual test.
mlewand eefa274
Tests added unit tests.
mlewand 51482c4
Changelog entry.
mlewand ba5dcf7
Tests: fixed key events mock.
mlewand 84265bd
Test: adjusted name of the editors.
mlewand File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<input type="text" id="focus-trap"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
tests/plugins/widgetselection/manual/inlinefocussteal.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<h2>Divarea</h2> | ||
|
||
<div id="editor1"> | ||
<ul> | ||
<li>foo</li> | ||
</ul> | ||
<p>bar</p> | ||
<ul> | ||
<li>baz</li> | ||
</ul> | ||
</div> | ||
|
||
<input type="text" value="init"> | ||
|
||
<script> | ||
if ( !CKEDITOR.env.webkit || bender.tools.env.mobile ) { | ||
bender.ignore(); | ||
} | ||
|
||
CKEDITOR.replace( 'editor1' ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@bender-tags: 4.10.1, bug, 1719 | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: wysiwygarea,toolbar,list,widgetselection,elementspath,divarea | ||
|
||
1. Focus the text input below the editor. | ||
1. Press `ctrl/cmd + a`. | ||
1. Type "foo". | ||
|
||
## Expected | ||
|
||
The input value is now "foo". | ||
|
||
## Unexpected | ||
|
||
Input value remains unchanged ("init") and the focus goes into the editor, where foo gets typed. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would be nice to provide some simple explanation comment with the issue ticket reference for this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TBH I don't think it is needed there, it's fairly logical that
ctrl/cmd+a
should be catched from within the editable. It's actually shame that we didn't catch this earlier, because in fact it didn't make sense in case of inline editors. 🙂