| Index: test/webkit/run-json-stringify-expected.txt
|
| diff --git a/test/webkit/run-json-stringify-expected.txt b/test/webkit/run-json-stringify-expected.txt
|
| index 45d55c7cafaa0e5844566837368c65b11b325c3e..fef38156a79a6c5224585688280ffec68d0e0269 100644
|
| --- a/test/webkit/run-json-stringify-expected.txt
|
| +++ b/test/webkit/run-json-stringify-expected.txt
|
| @@ -83,7 +83,7 @@ PASS tests[i](nativeJSON) is tests[i](JSON)
|
| function (jsonObject){
|
| return jsonObject.stringify({toJSON: Date.prototype.toJSON});
|
| }
|
| -PASS tests[i](nativeJSON) threw exception TypeError: undefined is not a function.
|
| +PASS tests[i](nativeJSON) threw exception TypeError: jsonObject.stringify is not a function.
|
| function (jsonObject){
|
| return jsonObject.stringify({toJSON: Date.prototype.toJSON, toISOString: function(){ return "custom toISOString"; }});
|
| }
|
| @@ -101,7 +101,7 @@ function (jsonObject){
|
| d.toISOString = null;
|
| return jsonObject.stringify(d);
|
| }
|
| -PASS tests[i](nativeJSON) threw exception TypeError: object is not a function.
|
| +PASS tests[i](nativeJSON) threw exception TypeError: jsonObject.stringify is not a function.
|
| function (jsonObject){
|
| var d = new Date(0);
|
| d.toJSON = undefined;
|
|
|