browser/devtools/webconsole/test/test-bug-585956-console-trace.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:6dfc7c7e48d2
1 <!DOCTYPE html>
2 <html lang="en">
3 <head><meta charset="utf-8">
4 <title>Web Console test for bug 585956 - console.trace()</title>
5 <!-- Any copyright is dedicated to the Public Domain.
6 http://creativecommons.org/publicdomain/zero/1.0/ -->
7 <script type="application/javascript">
8 window.foobar585956c = function(a) {
9 console.trace();
10 return a+"c";
11 };
12
13 function foobar585956b(a) {
14 return foobar585956c(a+"b");
15 }
16
17 function foobar585956a(omg) {
18 return foobar585956b(omg + "a");
19 }
20
21 foobar585956a("omg");
22 </script>
23 </head>
24 <body>
25 <p>Web Console test for bug 585956 - console.trace().</p>
26 </body>
27 </html>

mercurial