gecko/browser/devtools/debugger/test/browser_dbg_breakpoint-new-script.html

20 lines
262 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function runDebuggerStatement() {
debugger;
}
function myFunction() {
var a = 1;
debugger;
}
</script>
</head>
<body>
<button type="button" onclick="myFunction()">Run</button>
</body>
</html>