Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
errors-with-simple-names-or-messages-should-not-crash-toString.js
blob: b0f912bd5bf6db40efb4f9e09ab6269d41f3e7fc [
file
] [
log
] [
blame
]
//@ runDefault
// This test should not crash.
Error
.
prototype
.
name
=
0
Error
().
toString
();
Error
(
"1"
).
toString
();
Error
(
0
).
toString
();
Error
.
prototype
.
name
=
""
Error
().
toString
();
Error
(
"1"
).
toString
();
Error
(
0
).
toString
();