Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / console-log-stack-overflow.html
blobb738d67d32c9544de56c7443b7b800aa238320fa
1 <html>
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 </head>
5 <body onload='load(1)'>
7 <script>
8 description("Regression test for https://bugs.webkit.org/show_bug.cgi?id=30904. This test passes if it doesn't crash.");
10 // Force a stack-overflow in the console.log
11 function load(n) {
12 try {
13 load(n+1);
14 } catch(e) {
15 try {
16 console.log();
17 } catch (g) {
21 </script>
22 </body>
23 </html>