bug708819.js (235B)
1 /* 2 * Any copyright is dedicated to the Public Domain. 3 * http://creativecommons.org/licenses/publicdomain/ 4 */ 5 6 try { 7 var e = new Error(); 8 e.name = e; 9 "" + e; 10 } catch (e) { 11 assertEq(e.message, 'too much recursion'); 12 }