mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
139 lines
9.5 KiB
JavaScript
139 lines
9.5 KiB
JavaScript
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
gTestfile = '15.2.2.1.js';
|
|
|
|
/**
|
|
File Name: 15.2.2.1.js
|
|
ECMA Section: 15.2.2.1 The Object Constructor: new Object( value )
|
|
|
|
1.If the type of the value is not Object, go to step 4.
|
|
2.If the value is a native ECMAScript object, do not create a new object; simply return value.
|
|
3.If the value is a host object, then actions are taken and a result is returned in an
|
|
implementation-dependent manner that may depend on the host object.
|
|
4.If the type of the value is String, return ToObject(value).
|
|
5.If the type of the value is Boolean, return ToObject(value).
|
|
6.If the type of the value is Number, return ToObject(value).
|
|
7.(The type of the value must be Null or Undefined.) Create a new native ECMAScript object.
|
|
The [[Prototype]] property of the newly constructed object is set to the Object prototype object.
|
|
The [[Class]] property of the newly constructed object is set to "Object".
|
|
The newly constructed object has no [[Value]] property.
|
|
Return the newly created native object.
|
|
|
|
Description: This does not test cases where the object is a host object.
|
|
Author: christine@netscape.com
|
|
Date: 7 october 1997
|
|
*/
|
|
|
|
var SECTION = "15.2.2.1";
|
|
var VERSION = "ECMA_1";
|
|
startTest();
|
|
var TITLE = "new Object( value )";
|
|
|
|
writeHeaderToLog( SECTION + " "+ TITLE);
|
|
|
|
|
|
new TestCase( SECTION, "typeof new Object(null)", "object", typeof new Object(null) );
|
|
new TestCase( SECTION, "MYOB = new Object(null); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Object]", eval("MYOB = new Object(null); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
|
|
new TestCase( SECTION, "typeof new Object(void 0)", "object", typeof new Object(void 0) );
|
|
new TestCase( SECTION, "MYOB = new Object(new Object(void 0)); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Object]", eval("MYOB = new Object(new Object(void 0)); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
|
|
new TestCase( SECTION, "typeof new Object('string')", "object", typeof new Object('string') );
|
|
new TestCase( SECTION, "MYOB = (new Object('string'); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object String]", eval("MYOB = new Object('string'); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object('string').valueOf()", "string", (new Object('string')).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object('')", "object", typeof new Object('') );
|
|
new TestCase( SECTION, "MYOB = (new Object(''); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object String]", eval("MYOB = new Object(''); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object('').valueOf()", "", (new Object('')).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(Number.NaN)", "object", typeof new Object(Number.NaN) );
|
|
new TestCase( SECTION, "MYOB = (new Object(Number.NaN); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("MYOB = new Object(Number.NaN); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(Number.NaN).valueOf()", Number.NaN, (new Object(Number.NaN)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(0)", "object", typeof new Object(0) );
|
|
new TestCase( SECTION, "MYOB = (new Object(0); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("MYOB = new Object(0); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(0).valueOf()", 0, (new Object(0)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(-0)", "object", typeof new Object(-0) );
|
|
new TestCase( SECTION, "MYOB = (new Object(-0); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("MYOB = new Object(-0); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(-0).valueOf()", -0, (new Object(-0)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(1)", "object", typeof new Object(1) );
|
|
new TestCase( SECTION, "MYOB = (new Object(1); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("MYOB = new Object(1); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(1).valueOf()", 1, (new Object(1)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(-1)", "object", typeof new Object(-1) );
|
|
new TestCase( SECTION, "MYOB = (new Object(-1); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Number]", eval("MYOB = new Object(-1); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(-1).valueOf()", -1, (new Object(-1)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(true)", "object", typeof new Object(true) );
|
|
new TestCase( SECTION, "MYOB = (new Object(true); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Boolean]", eval("MYOB = new Object(true); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(true).valueOf()", true, (new Object(true)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(false)", "object", typeof new Object(false) );
|
|
new TestCase( SECTION, "MYOB = (new Object(false); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Boolean]", eval("MYOB = new Object(false); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(false).valueOf()", false, (new Object(false)).valueOf() );
|
|
|
|
new TestCase( SECTION, "typeof new Object(Boolean())", "object", typeof new Object(Boolean()) );
|
|
new TestCase( SECTION, "MYOB = (new Object(Boolean()); MYOB.toString = Object.prototype.toString; MYOB.toString()", "[object Boolean]", eval("MYOB = new Object(Boolean()); MYOB.toString = Object.prototype.toString; MYOB.toString()") );
|
|
new TestCase( SECTION, "(new Object(Boolean()).valueOf()", Boolean(), (new Object(Boolean())).valueOf() );
|
|
|
|
|
|
var myglobal = this;
|
|
var myobject = new Object( "my new object" );
|
|
var myarray = new Array();
|
|
var myboolean = new Boolean();
|
|
var mynumber = new Number();
|
|
var mystring = new String();
|
|
var myobject = new Object();
|
|
var myfunction = new Function( "x", "return x");
|
|
var mymath = Math;
|
|
|
|
new TestCase( SECTION, "myglobal = new Object( this )", myglobal, new Object(this) );
|
|
new TestCase( SECTION, "myobject = new Object('my new object'); new Object(myobject)", myobject, new Object(myobject) );
|
|
new TestCase( SECTION, "myarray = new Array(); new Object(myarray)", myarray, new Object(myarray) );
|
|
new TestCase( SECTION, "myboolean = new Boolean(); new Object(myboolean)", myboolean, new Object(myboolean) );
|
|
new TestCase( SECTION, "mynumber = new Number(); new Object(mynumber)", mynumber, new Object(mynumber) );
|
|
new TestCase( SECTION, "mystring = new String9); new Object(mystring)", mystring, new Object(mystring) );
|
|
new TestCase( SECTION, "myobject = new Object(); new Object(mynobject)", myobject, new Object(myobject) );
|
|
new TestCase( SECTION, "myfunction = new Function(); new Object(myfunction)", myfunction, new Object(myfunction) );
|
|
new TestCase( SECTION, "mymath = Math; new Object(mymath)", mymath, new Object(mymath) );
|
|
|
|
test();
|