mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* When the hasOwnProperty method is called with argument V, the following steps are taken:
|
|
* i) Let O be this object
|
|
* ii) Call ToString(V)
|
|
* iii) If O doesn't have a property with the name given by Result(ii), return false
|
|
* iv) Return true
|
|
*
|
|
* @path ch15/15.2/15.2.4/15.2.4.5/S15.2.4.5_A1_T3.js
|
|
* @description Argument of the hasOwnProperty method is a custom property of a function object
|
|
*/
|
|
|
|
var FACTORY = function(){
|
|
this.aproperty = 1;
|
|
};
|
|
|
|
var instance = new FACTORY;
|
|
|
|
//CHECK#1
|
|
if (typeof Object.prototype.hasOwnProperty !== "function") {
|
|
$ERROR('#1: hasOwnProperty method is defined');
|
|
}
|
|
|
|
//CHECK#2
|
|
if (typeof instance.hasOwnProperty !== "function") {
|
|
$ERROR('#2: hasOwnProperty method is accessed');
|
|
}
|
|
|
|
//CHECK#3
|
|
if (instance.hasOwnProperty("toString")) {
|
|
$ERROR('#3: hasOwnProperty method works properly');
|
|
}
|
|
|
|
//CHECK#4
|
|
if (!(instance.hasOwnProperty("aproperty"))) {
|
|
$ERROR('#4: hasOwnProperty method works properly');
|
|
}
|
|
|
|
|