File: break_point.js

package info (click to toggle)
ebug-http 0.31-2.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 348 kB
  • ctags: 343
  • sloc: perl: 1,957; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
function break_point (line) {
   document.hiddenform.myaction.value = "break_point";
   document.hiddenform.line.value = line;
   document.hiddenform.submit();
}

function break_point_delete (line) {
   document.hiddenform.myaction.value = "break_point_delete";
   document.hiddenform.line.value = line;
   document.hiddenform.submit();
}