blob: 606301c04271a1996ec632ed71d11f9b5ca5d049 [file] [log] [blame]
<html>
<head>
<script src="../js/resources/js-test-pre.js"></script>
</head>
<body onload='load(1)'>
<script>
description("Regression test for https://bugs.webkit.org/show_bug.cgi?id=30904. This test passes if it doesn't crash.");
// Force a stack-overflow in the console.log
function load(n) {
try {
load(n+1);
} catch(e) {
try {
console.log();
} catch (g) {
}
}
}
</script>
<script src="../js/resources/js-test-post.js"></script>
</body>
</html>