Index: trunk/phase3/resources/mediawiki.util/mediawiki.util.test.js |
— | — | @@ -311,14 +311,14 @@ |
312 | 312 | |
313 | 313 | if ( doesreturn.indexOf( shouldcontain ) !== -1 ) { |
314 | 314 | if ( doesreturn == shouldreturn ) { |
315 | | - $thisrow.find( '> td' ).eq(3).css( 'background', '#EFE' ).text( 'OK' ); |
| 315 | + $thisrow.find( '> td' ).eq(3).css( 'background', '#AFA' ).text( 'OK' ); |
316 | 316 | numberofpasseds++; |
317 | 317 | } else { |
318 | | - $thisrow.find( '> td' ).eq(3).css( 'background', '#FFE' ).html( '<small>PARTIALLY</small>' ); |
| 318 | + $thisrow.find( '> td' ).eq(3).css( 'background', '#FFA' ).html( '<small>PARTIALLY</small>' ); |
319 | 319 | numberofpartials++; |
320 | 320 | } |
321 | 321 | } else { |
322 | | - $thisrow.find( '> td' ).eq(3).css( 'background', '#FEE' ).text( 'ERROR' ); |
| 322 | + $thisrow.find( '> td' ).eq(3).css( 'background', '#FAA' ).text( 'ERROR' ); |
323 | 323 | numberoferrors++; |
324 | 324 | } |
325 | 325 | |