summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/new/test/mochitest/examples/doc-frames.html
blob: 408c55b284b367ca8dfd42e2eb62a071b113761f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
  <head>
    <title>Frames</title>
  </head>

  <body>
    <script>
      debugger;
      // 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>
    <script type="text/javascript" src="frames.js"></script>
  </body>

</html>