summaryrefslogtreecommitdiffstats
path: root/dom/console/tests/test_bug978522.html
blob: 33d1d56a8f041f6c46a46c373aee24c8b6f7b065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=978522
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 978522 - basic support</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=978522">Mozilla Bug 978522</a>
<script type="application/javascript">

  console.log('%s', {
    toString: function() {
      console.log('%s', {
        toString: function() {
          ok(true, "Still alive \\o/");
          SimpleTest.finish();
          return "hello world";
        }
      });
    }
  });

  SimpleTest.waitForExplicitFinish();

</script>
</body>
</html>