30 lines
604 B
HTML
30 lines
604 B
HTML
<!-- Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<!doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Debugger test page</title>
|
|
</head>
|
|
|
|
<body>
|
|
<button onclick="test(10)">Click me!</button>
|
|
|
|
<script type="text/javascript">
|
|
function test(aNumber) {
|
|
var a, obj = { one: 1, two: 2 };
|
|
var r = aNumber;
|
|
with (Math) {
|
|
a = PI * r * r;
|
|
with (obj) {
|
|
var foo = two * PI;
|
|
debugger;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|