Browse Source

Check if contenteditable=true is added automatically.

Piotrek Koszuliński 8 years ago
parent
commit
45e2133759
1 changed files with 5 additions and 1 deletions
  1. 5 1
      packages/ckeditor5-editor-inline/tests/manual/inline.html

+ 5 - 1
packages/ckeditor5-editor-inline/tests/manual/inline.html

@@ -8,9 +8,13 @@
 	<p>This is an editor instance.</p>
 </div>
 
-<div id="editor-2" contenteditable="true" class="custom-class" custom-attr="foo">
+<div id="editor-2" class="custom-class" custom-attr="foo">
 	<h2>Editor 2</h2>
 	<p>This is another editor instance.</p>
+	<p>
+		Unlike Editor 1 it doesn't have contenteditable=true initially.
+		Check if it's editable after initializing the editors and back to non-editable after destroying them.
+	</p>
 </div>
 
 <style>