diff options
Diffstat (limited to 'devtools/server/tests/xpcshell/setBreakpoint-on-line-with-multiple-offsets.js')
-rw-r--r-- | devtools/server/tests/xpcshell/setBreakpoint-on-line-with-multiple-offsets.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/devtools/server/tests/xpcshell/setBreakpoint-on-line-with-multiple-offsets.js b/devtools/server/tests/xpcshell/setBreakpoint-on-line-with-multiple-offsets.js new file mode 100644 index 0000000000..b30ebb5049 --- /dev/null +++ b/devtools/server/tests/xpcshell/setBreakpoint-on-line-with-multiple-offsets.js @@ -0,0 +1,7 @@ +"use strict"; + +function f() { + for (var i = 0; i < 1; ++i) { + ; + } +} |