Index: /CKEditor/trunk/_source/plugins/colordialog/dialogs/colordialog.js
===================================================================
--- /CKEditor/trunk/_source/plugins/colordialog/dialogs/colordialog.js	(revision 7457)
+++ /CKEditor/trunk/_source/plugins/colordialog/dialogs/colordialog.js	(revision 7458)
@@ -267,10 +267,11 @@
 
 			// Create the last row.
-			var oRow = table.$.insertRow(-1) ;
+			var oRow = new $el( table.$.insertRow( -1 ) ) ;
+			oRow.setAttribute( 'role', 'row' );
 
 			// Create the gray scale colors cells.
 			for ( var n = 0 ; n < 6 ; n++ )
 			{
-				appendColorCell( oRow, '#' + aColors[n] + aColors[n] + aColors[n] ) ;
+				appendColorCell( oRow.$, '#' + aColors[n] + aColors[n] + aColors[n] ) ;
 			}
 
@@ -278,5 +279,5 @@
 			for ( var i = 0 ; i < 12 ; i++ )
 			{
-				appendColorCell( oRow, '#000000' ) ;
+				appendColorCell( oRow.$, '#000000' ) ;
 			}
 		}
