summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/new/test/mochitest/examples/doc-debugger-statements.html
blob: 967619d31a9a0a1fb786db2444cfe73aac783c56 (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
<html>
  <head>
    <title>Debugger Statements</title>
  </head>

  <body>
    <script>
      debugger;
      test();

      function test() {
        debugger;
        stepIntoMe();
      }

      function stepIntoMe() {
        // step in
        stepOverMe();
        // step out
      }

      function stepOverMe() {
      }
    </script>
  </body>

</html>