21 lines
463 B
HTML
21 lines
463 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Debugger Tracer test page</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="code_tracing-01.js"></script>
|
|
<button onclick="main()">Click me!</button>
|
|
|
|
<script type="text/javascript">
|
|
// Have an inline script to make sure the HTML file is listed
|
|
// in the sources. We want to switch between them.
|
|
function foo() {
|
|
return 5;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|