| Index: LayoutTests/fast/js/global-recursion-on-full-stack.html
|
| diff --git a/LayoutTests/fast/js/global-recursion-on-full-stack.html b/LayoutTests/fast/js/global-recursion-on-full-stack.html
|
| deleted file mode 100644
|
| index 086b74112176c6a3b82047d1217572a87c84f494..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/js/global-recursion-on-full-stack.html
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -This tests global code recursion when the JS stack is full.
|
| -<div id="result">PASS: Entering global code with a full JS stack did not crash, and did not allow continued recursion.</id>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -var depth = 0;
|
| -function f(a, b, c, d) {
|
| - var a, b;
|
| - try {
|
| - depth++;
|
| - f(a, b, c, d);
|
| - } catch(e) {
|
| - document.write('<script> f(); result.innerText = "FAILED: Attempting to call f() should throw due to stack exhaustion"; </'+'script> ');
|
| - }
|
| -}
|
| -
|
| -f();
|
| -</script>
|
|
|