Browse Source

Internal: Italic feature uses <i> now. [skip ci]

Piotrek Koszuliński 8 years ago
parent
commit
7625bbbf5f

+ 2 - 2
packages/ckeditor5-typing/tests/inputcommand-integration.js

@@ -192,7 +192,7 @@ describe( 'InputCommand integration', () => {
 
 			expectOutput(
 				'<paragraph>Foo <$text bold="true">B</$text><$text italic="true"><$text bold="true">a</$text></$text>z[] Bar</paragraph>',
-				'<p>Foo <strong>B</strong><em><strong>a</strong></em>z{} Bar</p>'
+				'<p>Foo <strong>B</strong><i><strong>a</strong></i>z{} Bar</p>'
 			);
 
 			editor.execute( 'undo' );
@@ -202,7 +202,7 @@ describe( 'InputCommand integration', () => {
 					'Foo <$text bold="true">B</$text><$text italic="true"><$text bold="true">a</$text></$text>' +
 					'<$text bold="true" italic="true">[]</$text> Bar' +
 				'</paragraph>',
-				'<p>Foo <strong>B</strong><em><strong>a{}</strong></em> Bar</p>'
+				'<p>Foo <strong>B</strong><i><strong>a{}</strong></i> Bar</p>'
 			);
 
 			editor.execute( 'undo' );

+ 1 - 1
packages/ckeditor5-typing/tests/manual/20/1.html

@@ -1,4 +1,4 @@
 <div id="editor">
 	<h2>Heading 1</h2>
-	<p><em>This</em> is an <strong>editor</strong> instance.</p>
+	<p><i>This</i> is an <strong>editor</strong> instance.</p>
 </div>

+ 1 - 1
packages/ckeditor5-typing/tests/manual/21/1.html

@@ -1,4 +1,4 @@
 <div id="editor">
 	<h2>Heading 1</h2>
-	<p><em>This</em> is an <strong>editor</strong> instance.</p>
+	<p><i>This</i> is an <strong>editor</strong> instance.</p>
 </div>

+ 1 - 1
packages/ckeditor5-typing/tests/manual/52/1.html

@@ -1,6 +1,6 @@
 <div id="editor">
 	<h2>Heading 1</h2>
-	<h3><em>Heading 2</em></h3>
+	<h3><i>Heading 2</i></h3>
 	<p><strong>Bolded text!</strong></p>
 	<p><em>This</em> is an <strong>editor</strong> instance.</p>
 </div>

+ 1 - 1
packages/ckeditor5-typing/tests/manual/delete.html

@@ -1,5 +1,5 @@
 <div id="editor">
 	<h2>Heading 1</h2>
 	<h3>Heading 2</h3>
-	<p><em>This</em> is an <strong>editor</strong> instance.</p>
+	<p><i>This</i> is an <strong>editor</strong> instance.</p>
 </div>

+ 1 - 1
packages/ckeditor5-typing/tests/manual/input.html

@@ -1,5 +1,5 @@
 <div id="editor">
 	<h2>Heading 1</h2>
 	<h3>Heading 2</h3>
-	<p><em>This</em> is an <strong>editor</strong> instance.</p>
+	<p><i>This</i> is an <strong>editor</strong> instance.</p>
 </div>

+ 1 - 1
packages/ckeditor5-typing/tests/manual/rtl.html

@@ -6,7 +6,7 @@
 	<div id="editor1">
 		<h2>ش ز ذ ي ث ب</h2>
 		<h3>ل ا ه ت ن</h3>
-		<p><em>م و ر خ</em> ح ض ق س <strong>ف ع ص</strong> ط غ ظ.</p>
+		<p><i>م و ر خ</i> ح ض ق س <strong>ف ع ص</strong> ط غ ظ.</p>
 	</div>
 
 	<h1>Editor 2: [dir=ltr], mixed content</h1>