Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: test/webkit/toString-recursion.js

Issue 1507273002: Make Error.prototype.toString spec compliant; and fix various side-effect-free error printing metho… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/webkit/toString-recursion.js
diff --git a/test/webkit/toString-recursion.js b/test/webkit/toString-recursion.js
index 51e9f98c2d28665b9a969aa801aacad83c548856..c0e68f3ecc0b16d51df37c2aa0ee2ef34b0af751 100644
--- a/test/webkit/toString-recursion.js
+++ b/test/webkit/toString-recursion.js
@@ -28,8 +28,5 @@ description(
// Array (elements)
shouldBe("var array = []; array[0] = array; array + ''", "''");
-// Error (name, message)
-shouldBe("var error = new Error; error.name = error; error.message = error; error + ''", "''");
-
// RegExp (source)
shouldBe("var regexp = /a/; regexp.source = regexp; regexp + ''", "'/a/'");

Powered by Google App Engine
This is Rietveld 408576698