blob: 229109464697972649d3c72a39ca2f7c56d80d45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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>
|