|
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/. */ |
|
5 |
|
6 |
|
7 /** |
|
8 File Name: string-001.js |
|
9 Corresponds To: 15.5.4.2-2-n.js |
|
10 ECMA Section: 15.5.4.2 String.prototype.toString() |
|
11 |
|
12 Description: Returns this string value. Note that, for a String |
|
13 object, the toString() method happens to return the same |
|
14 thing as the valueOf() method. |
|
15 |
|
16 The toString function is not generic; it generates a |
|
17 runtime error if its this value is not a String object. |
|
18 Therefore it connot be transferred to the other kinds of |
|
19 objects for use as a method. |
|
20 |
|
21 Author: christine@netscape.com |
|
22 Date: 1 october 1997 |
|
23 */ |
|
24 var SECTION = "string-001"; |
|
25 var VERSION = "JS1_4"; |
|
26 var TITLE = "String.prototype.toString"; |
|
27 |
|
28 startTest(); |
|
29 writeHeaderToLog( SECTION + " "+ TITLE); |
|
30 |
|
31 var result = "Failed"; |
|
32 var exception = "No exception thrown"; |
|
33 var expect = "Passed"; |
|
34 |
|
35 try { |
|
36 OBJECT = new Object(); |
|
37 OBJECT.toString = String.prototype.toString(); |
|
38 result = OBJECT.toString(); |
|
39 } catch ( e ) { |
|
40 result = expect; |
|
41 exception = e.toString(); |
|
42 } |
|
43 |
|
44 new TestCase( |
|
45 SECTION, |
|
46 "OBJECT = new Object; "+ |
|
47 " OBJECT.toString = String.prototype.toString; OBJECT.toString()" + |
|
48 " (threw " + exception +")", |
|
49 expect, |
|
50 result ); |
|
51 |
|
52 test(); |
|
53 |