blob: 4b2983b5f86b81c8cb505773b2ee92459fd3c270 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The Number prototype object has the property constructor
es5id: 15.7.4_A3.1
description: The test uses hasOwnProperty() method
---*/
assert.sameValue(
Number.prototype.hasOwnProperty("constructor"),
true,
'Number.prototype.hasOwnProperty("constructor") must return true'
);