Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf8">
<title>Test breakpoint document</title>
<!-- Any copyright is dedicated to the Public Domain.
</head>
<body>
<script>
"use strict";
/* eslint-disable */
function testFunction() {
console.log("test Function ran");
}
function runDebuggerStatement() {
debugger;
}
</script>
</body>
</html>