Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / function-names-expected.txt
blob045326345bdc149bcab6f8261b83bff3ea70b0dc
1 This test checks the names of all sorts of different functions.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS new Function(' return 1; ').toString().replace(/[ \n]+/g, ' ') is 'function anonymous() { return 1; }'
7 PASS document.documentElement.onclick.toString().replace(/[ \n]+/g, ' ') is 'function onclick(event) { return 2; }'
8 PASS ''.constructor is String
9 FAIL Boolean.toString() should be function Boolean() {
10     [native code]
11 }. Was function Boolean() { [native code] }.
12 FAIL Date.toString() should be function Date() {
13     [native code]
14 }. Was function Date() { [native code] }.
15 FAIL Error.toString() should be function Error() {
16     [native code]
17 }. Was function Error() { [native code] }.
18 FAIL EvalError.toString() should be function EvalError() {
19     [native code]
20 }. Was function EvalError() { [native code] }.
21 FAIL Function.toString() should be function Function() {
22     [native code]
23 }. Was function Function() { [native code] }.
24 FAIL Number.toString() should be function Number() {
25     [native code]
26 }. Was function Number() { [native code] }.
27 FAIL Object.toString() should be function Object() {
28     [native code]
29 }. Was function Object() { [native code] }.
30 FAIL RangeError.toString() should be function RangeError() {
31     [native code]
32 }. Was function RangeError() { [native code] }.
33 FAIL ReferenceError.toString() should be function ReferenceError() {
34     [native code]
35 }. Was function ReferenceError() { [native code] }.
36 FAIL RegExp.toString() should be function RegExp() {
37     [native code]
38 }. Was function RegExp() { [native code] }.
39 FAIL String.toString() should be function String() {
40     [native code]
41 }. Was function String() { [native code] }.
42 FAIL SyntaxError.toString() should be function SyntaxError() {
43     [native code]
44 }. Was function SyntaxError() { [native code] }.
45 FAIL TypeError.toString() should be function TypeError() {
46     [native code]
47 }. Was function TypeError() { [native code] }.
48 FAIL URIError.toString() should be function URIError() {
49     [native code]
50 }. Was function URIError() { [native code] }.
51 PASS successfullyParsed is true
53 TEST COMPLETE