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

Unified Diff: LayoutTests/fast/js/global-recursion-on-full-stack.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months 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: 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>

Powered by Google App Engine
This is Rietveld 408576698