Index: /CKEditor/tests/tt/7322/1.html
===================================================================
--- /CKEditor/tests/tt/7322/1.html	(revision 6549)
+++ /CKEditor/tests/tt/7322/1.html	(revision 6549)
@@ -0,0 +1,57 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>Ticket: #7322</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script type="text/javascript">
+
+// Load the required plugins and launch the runner.
+CKEDITOR.test.runner.defer = true;
+CKEDITOR.plugins.load( [ 'styles', 'domiterator', 'htmldataprocessor' ] , function()
+{
+ CKEDITOR.test.runner.run();
+} );
+
+	</script>
+	<script type="text/javascript">
+	//<![CDATA[
+
+var testCase;
+
+CKEDITOR.test.addTestCase( testCase = (function()
+{
+	// Local references.
+	var assert	= CKEDITOR.test.assert;
+	var doc = new CKEDITOR.dom.document( document );
+
+	return {
+		/**
+		 * Test style comparison normalize font-family property value properly.
+		 */
+		test_style_font_family : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( '<span style="font-family: \'times new roman\',times,serif;">text</span>' );
+			var style = new CKEDITOR.style( { element: 'span', styles	: { 'font-family' : 'Times New Roman, Times, serif;' } } );
+			assert.isTrue( style.checkActive( new CKEDITOR.dom.elementPath( doc.getById( '_P1' ).getFirst() ) ) );
+
+			element.setHtml( '<span style="font-family: \"comic sans ms\",cursive;">text</span>' );
+			style = new CKEDITOR.style( { element: 'span', styles: { 'font-family' : 'Comic Sans MS, cursive;' } } );
+			assert.isTrue( style.checkActive( new CKEDITOR.dom.elementPath( doc.getById( '_P1' ).getFirst() ) ) );
+
+			element.setHtml( '<span style="font-family:\'georgia\',serif;">text</span>' );
+			style = new CKEDITOR.style( { element: 'span', styles: { 'font-family' : 'eorgia, serif;' } } );
+			assert.isTrue( style.checkActive( new CKEDITOR.dom.elementPath( doc.getById( '_P1' ).getFirst() ) ) );
+		},
+		name : document.title
+	};
+})() );
+//window.onload = testCase.test_ticket_3188;
+	//]]>
+	</script>
+</head>
+<body>
+	<div id="_P1"></div>
+</body>
+</html>
