1
0
Fork 0

IE6 was blowing up on getter/setter test

closure/master
Mike Gerwitz 2011-03-06 10:56:31 -05:00
parent 4eda438f14
commit a1c1ddff74
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@
* @package test
*/
// no need to test getters/setters in browsers that do not support them
if ( !Object.defineProperty )
{
return;
}
var common = require( './common' ),
assert = require( 'assert' ),