8
0
Krzysztof Krztoń 8 лет назад
Родитель
Сommit
d29244ad46

+ 3 - 0
packages/ckeditor5-engine/tests/manual/tickets/887/1.html

@@ -0,0 +1,3 @@
+<div id="editor">
+	<p>This is an <strong>editor</strong> instance.</p>
+</div>

+ 22 - 0
packages/ckeditor5-engine/tests/manual/tickets/887/1.js

@@ -0,0 +1,22 @@
+/**
+ * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
+ */
+
+/* globals console, window, document */
+
+import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classic';
+import EssentialsPreset from '@ckeditor/ckeditor5-presets/src/essentials';
+import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
+import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
+
+ClassicEditor.create( document.querySelector( '#editor' ), {
+	plugins: [ EssentialsPreset, Paragraph, Bold ],
+	toolbar: [ 'undo', 'redo' ]
+} )
+.then( editor => {
+	window.editor = editor;
+} )
+.catch( err => {
+	console.error( err.stack );
+} );

+ 8 - 0
packages/ckeditor5-engine/tests/manual/tickets/887/1.md

@@ -0,0 +1,8 @@
+## Renderer - MacOS accent balloon similar selection
+
+1. Place selection like `This is an <strong>editor{}</strong> instance.`
+2. Open MacOS accent balloon (e.g. long `a` press).
+3. Navigate through balloon panel with arrow keys.
+
+**Expected**: It is possible to navigate with arrow keys inside MacOS balloon panel. While navigating, there
+might be `renderer-selection-similar` warning visible in the browser dev console.