test-console-trace-async.html 604 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head><meta charset="utf-8">
  4. <title>Web Console test for bug 1200832 - console.trace() async stacks</title>
  5. <!-- Any copyright is dedicated to the Public Domain.
  6. http://creativecommons.org/publicdomain/zero/1.0/ -->
  7. <script type="application/javascript">
  8. function inner() {
  9. console.trace();
  10. }
  11. function time1() {
  12. new Promise(function(resolve, reject) {
  13. setTimeout(resolve, 10);
  14. }).then(inner);
  15. }
  16. setTimeout(time1, 10);
  17. </script>
  18. </head>
  19. <body>
  20. <p>Web Console test for bug 1200832 - console.trace() async stacks</p>
  21. </body>
  22. </html>