mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
27 lines
363 B
HTML
27 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>
|