Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | File Name: 15.js |
michael@0 | 9 | ECMA Section: 15 Native ECMAScript Objects |
michael@0 | 10 | Description: Every built-in prototype object has the Object prototype |
michael@0 | 11 | object, which is the value of the expression |
michael@0 | 12 | Object.prototype (15.2.3.1) as the value of its internal |
michael@0 | 13 | [[Prototype]] property, except the Object prototype |
michael@0 | 14 | object itself. |
michael@0 | 15 | |
michael@0 | 16 | Every native object associated with a program-created |
michael@0 | 17 | function also has the Object prototype object as the |
michael@0 | 18 | value of its internal [[Prototype]] property. |
michael@0 | 19 | |
michael@0 | 20 | Author: christine@netscape.com |
michael@0 | 21 | Date: 28 october 1997 |
michael@0 | 22 | |
michael@0 | 23 | */ |
michael@0 | 24 | var SECTION = "15-1"; |
michael@0 | 25 | var VERSION = "ECMA_1"; |
michael@0 | 26 | startTest(); |
michael@0 | 27 | var TITLE = "Native ECMAScript Objects"; |
michael@0 | 28 | |
michael@0 | 29 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 30 | /* |
michael@0 | 31 | new TestCase( SECTION, "Function.prototype.__proto__", Object.prototype, Function.prototype.__proto__ ); |
michael@0 | 32 | new TestCase( SECTION, "Array.prototype.__proto__", Object.prototype, Array.prototype.__proto__ ); |
michael@0 | 33 | new TestCase( SECTION, "String.prototype.__proto__", Object.prototype, String.prototype.__proto__ ); |
michael@0 | 34 | new TestCase( SECTION, "Boolean.prototype.__proto__", Object.prototype, Boolean.prototype.__proto__ ); |
michael@0 | 35 | new TestCase( SECTION, "Number.prototype.__proto__", Object.prototype, Number.prototype.__proto__ ); |
michael@0 | 36 | // new TestCase( SECTION, "Math.prototype.__proto__", Object.prototype, Math.prototype.__proto__ ); |
michael@0 | 37 | new TestCase( SECTION, "Date.prototype.__proto__", Object.prototype, Date.prototype.__proto__ ); |
michael@0 | 38 | new TestCase( SECTION, "TestCase.prototype.__proto__", Object.prototype, TestCase.prototype.__proto__ ); |
michael@0 | 39 | |
michael@0 | 40 | new TestCase( SECTION, "MyObject.prototype.__proto__", Object.prototype, MyObject.prototype.__proto__ ); |
michael@0 | 41 | */ |
michael@0 | 42 | new TestCase( SECTION, "Function.prototype.__proto__ == Object.prototype", true, Function.prototype.__proto__ == Object.prototype ); |
michael@0 | 43 | new TestCase( SECTION, "Array.prototype.__proto__ == Object.prototype", true, Array.prototype.__proto__ == Object.prototype ); |
michael@0 | 44 | new TestCase( SECTION, "String.prototype.__proto__ == Object.prototype", true, String.prototype.__proto__ == Object.prototype ); |
michael@0 | 45 | new TestCase( SECTION, "Boolean.prototype.__proto__ == Object.prototype", true, Boolean.prototype.__proto__ == Object.prototype ); |
michael@0 | 46 | new TestCase( SECTION, "Number.prototype.__proto__ == Object.prototype", true, Number.prototype.__proto__ == Object.prototype ); |
michael@0 | 47 | // new TestCase( SECTION, "Math.prototype.__proto__ == Object.prototype", true, Math.prototype.__proto__ == Object.prototype ); |
michael@0 | 48 | new TestCase( SECTION, "Date.prototype.__proto__ == Object.prototype", true, Date.prototype.__proto__ == Object.prototype ); |
michael@0 | 49 | new TestCase( SECTION, "TestCase.prototype.__proto__ == Object.prototype", true, TestCase.prototype.__proto__ == Object.prototype ); |
michael@0 | 50 | |
michael@0 | 51 | new TestCase( SECTION, "MyObject.prototype.__proto__ == Object.prototype", true, MyObject.prototype.__proto__ == Object.prototype ); |
michael@0 | 52 | |
michael@0 | 53 | |
michael@0 | 54 | test(); |
michael@0 | 55 | |
michael@0 | 56 | |
michael@0 | 57 | function MyObject( value ) { |
michael@0 | 58 | this.value = value; |
michael@0 | 59 | this.valueOf = new Function( "return this.value" ); |
michael@0 | 60 | } |