• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<script>
2function test()
3{
4    debugger;
5}
6
7var object = { test: 1 };
8
9for (var property in object)
10    test();
11</script>
12
13Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>.
14<br><br>
15Start a debugging session in the Web Inspector and open this file. When the debugger breaks, select the (program) node
16in the call stack, you should see the execution line on the call to test().
17<br><br>
18Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.
19