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.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /**
8 File Name: 15-2.js
9 ECMA Section: 15 Native ECMAScript Objects
11 Description: Every built-in function and every built-in constructor
12 has the Function prototype object, which is the value of
13 the expression Function.prototype as the value of its
14 internal [[Prototype]] property, except the Function
15 prototype object itself.
17 That is, the __proto__ property of builtin functions and
18 constructors should be the Function.prototype object.
20 Author: christine@netscape.com
21 Date: 28 october 1997
23 */
24 var SECTION = "15-2";
25 var VERSION = "ECMA_1";
26 startTest();
27 var TITLE = "Native ECMAScript Objects";
29 writeHeaderToLog( SECTION + " "+ TITLE);
31 new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ );
32 new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
33 new TestCase( SECTION, "String.__proto__", Function.prototype, String.__proto__ );
34 new TestCase( SECTION, "Boolean.__proto__", Function.prototype, Boolean.__proto__ );
35 new TestCase( SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
36 new TestCase( SECTION, "Date.__proto__", Function.prototype, Date.__proto__ );
37 new TestCase( SECTION, "TestCase.__proto__", Function.prototype, TestCase.__proto__ );
39 new TestCase( SECTION, "eval.__proto__", Function.prototype, eval.__proto__ );
40 new TestCase( SECTION, "Math.pow.__proto__", Function.prototype, Math.pow.__proto__ );
41 new TestCase( SECTION, "String.prototype.indexOf.__proto__", Function.prototype, String.prototype.indexOf.__proto__ );
43 test();