test262/test/suite/ch08/8.12/8.12.3/S8.12.3_A2.js
2011-10-03 13:04:52 -07:00

29 lines
999 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* [[Get]](P) method should return undefined when property P does not exist both in instance and prototype
*
* @path ch08/8.12/8.12.3/S8.12.3_A2.js
* @description Try to get P when property P does not exist both in instance and prototype
*/
var __obj={};
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__obj.propFoo !== undefined){
$ERROR('#1: var __obj={}; __obj.propFoo === undefined. Actual: ' + (__obj.propFoo));
}
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__obj['propFoo'] !== undefined){
$ERROR('#2: var __obj={}; __obj[\'propFoo\'] === undefined. Actual: ' + (__obj['propFoo']));
}
//
//////////////////////////////////////////////////////////////////////////////