mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 10:29:04 +00:00
28 lines
363 B
HTML
28 lines
363 B
HTML
<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>
|