summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/new-console-output/test/mochitest/test-console.html
blob: 7ef09d9a10d6092ae5d48c7ef21be326d6d0d588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Simple webconsole test page</title>
  </head>
  <body>
    <p>Simple webconsole test page</p>
    <script>
      function doLogs(num) {
        num = num || 1;
        for (var i = 0; i < num; i++) {
          console.log(i);
        }
      }
    </script>
  </body>
</html>