8
0
Dmitri Pisarev 7 лет назад
Родитель
Сommit
b90ee6ed66
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      packages/ckeditor5-engine/tests/view/filler.js

+ 3 - 3
packages/ckeditor5-engine/tests/view/filler.js

@@ -111,10 +111,10 @@ describe( 'filler', () => {
 
 			expect( isInlineFiller( node ) ).to.be.false;
 		} );
-		
+
 		it( 'should be true for inline filler from inside iframe', () => {
-			const iframe = document.createElement('iframe');
-			document.body.appendChild(iframe);
+			const iframe = document.createElement( 'iframe' );
+			document.body.appendChild( iframe );
 			const node = iframe.contentDocument.createTextNode( INLINE_FILLER );
 
 			expect( isInlineFiller( node ) ).to.be.true;