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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 This tests global code recursion when the JS stack is full.
2 <div id="result">PASS: Entering global code with a full JS stack did not crash, and did not allow continued recursion.</id>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6
7 var depth = 0;
8 function f(a, b, c, d) {
9 var a, b;
10 try {
11 depth++;
12 f(a, b, c, d);
13 } catch(e) {
14 document.write('<script> f(); result.innerText = "FAILED: Attempting to call f() should throw due to stack exhaustion"; </'+'script> ');
15 }
16 }
17
18 f();
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698