ソースを参照

Tests: Fixed test broken in the previous commit.

Piotrek Koszuliński 10 年 前
コミット
e489e91d9b
1 ファイル変更1 行追加1 行削除
  1. 1 1
      packages/ckeditor5-engine/tests/treeview/manual/typing.js

+ 1 - 1
packages/ckeditor5-engine/tests/treeview/manual/typing.js

@@ -30,5 +30,5 @@ function handleTyping( evt, mutations ) {
 		return;
 	}
 
-	mutation.node.setText( mutation.newText );
+	mutation.node.data = mutation.newText;
 }