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