summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/new/test/mochitest/examples/doc-scripts.html
blob: 212b4802ff179e1b28a6ed488345e629ed3adde4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>Debugger test page</title>
  </head>
 
  <body>
    <script src="simple1.js"></script>
    <script src="simple2.js"></script>
    <script src="long.js"></script>
    <script>
      // This inline script allows this HTML page to show up as a
      // source. It also needs to introduce a new global variable so
      // it's not immediately garbage collected.
      function inline_script() { var x = 5; }
    </script>
  </body>
</html>